Skip to content

Commit 32dc51b

Browse files
authored
Fix typos in previous version number. (#678)
1 parent edc6646 commit 32dc51b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/major-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Run **all** commands as root or via **sudo**:
203203
204204
```{.bash data-prompt="$"}
205205
$ ./delete_old_cluster.sh
206-
$ sudo rm -rf /etc/postgresql/15/main
206+
$ sudo rm -rf /etc/postgresql/16/main
207207
$ #Logout
208208
$ exit
209209
```

docs/solutions/backup-recovery.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored
2121
<br>
2222
PostgreSQL offers multiple options for setting up database disaster recovery.
2323

24-
- **[pg_dump :octicons-link-external-16:](https://www.postgresql.org/docs/15/app-pgdump.html) or the [pg_dumpall :octicons-link-external-16:](https://www.postgresql.org/docs/15/app-pg-dumpall.html) utilities**
24+
- **[pg_dump :octicons-link-external-16:](https://www.postgresql.org/docs/16/app-pgdump.html) or the [pg_dumpall :octicons-link-external-16:](https://www.postgresql.org/docs/16/app-pg-dumpall.html) utilities**
2525

26-
This is the basic backup approach. These tools can generate the backup of one or more PostgreSQL databases (either just the structure, or both the structure and data), then restore them through the [pg_restore :octicons-link-external-16:](https://www.postgresql.org/docs/15/app-pgrestore.html) command.
26+
This is the basic backup approach. These tools can generate the backup of one or more PostgreSQL databases (either just the structure, or both the structure and data), then restore them through the [pg_restore :octicons-link-external-16:](https://www.postgresql.org/docs/16/app-pgrestore.html) command.
2727

2828
| Advantages | Disadvantages |
2929
| ------------ | --------------- |
@@ -37,7 +37,7 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored
3737
| ------------ | --------------- |
3838
| Consistent snapshot of the data directory or the whole data disk volume | 1. Requires stopping PostgreSQL in order to copy the files. This is not practical for most production setups.<br> 2. No backup of individual databases or tables.|
3939

40-
- **PostgreSQL [pg_basebackup :octicons-link-external-16:](https://www.postgresql.org/docs/15/app-pgbasebackup.html)**
40+
- **PostgreSQL [pg_basebackup :octicons-link-external-16:](https://www.postgresql.org/docs/16/app-pgbasebackup.html)**
4141

4242
This backup tool is provided by PostgreSQL. It is used to back up data when the database instance is running. `pgasebackup` makes a binary copy of the database cluster files, while making sure the system is put in and out of backup mode automatically.
4343

0 commit comments

Comments
 (0)