From 32dc51b43e61163b980cd782818671c24392848a Mon Sep 17 00:00:00 2001 From: Ghazi Triki Date: Tue, 19 Nov 2024 15:14:17 +0100 Subject: [PATCH] Fix typos in previous version number. (#678) --- docs/major-upgrade.md | 2 +- docs/solutions/backup-recovery.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/major-upgrade.md b/docs/major-upgrade.md index 190ea0f02..2bc7dffde 100644 --- a/docs/major-upgrade.md +++ b/docs/major-upgrade.md @@ -203,7 +203,7 @@ Run **all** commands as root or via **sudo**: ```{.bash data-prompt="$"} $ ./delete_old_cluster.sh - $ sudo rm -rf /etc/postgresql/15/main + $ sudo rm -rf /etc/postgresql/16/main $ #Logout $ exit ``` diff --git a/docs/solutions/backup-recovery.md b/docs/solutions/backup-recovery.md index 57a1da194..755b8c64d 100644 --- a/docs/solutions/backup-recovery.md +++ b/docs/solutions/backup-recovery.md @@ -21,9 +21,9 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored
PostgreSQL offers multiple options for setting up database disaster recovery. - - **[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** + - **[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** - 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. + 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. | Advantages | Disadvantages | | ------------ | --------------- | @@ -37,7 +37,7 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored | ------------ | --------------- | | 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.
2. No backup of individual databases or tables.| - - **PostgreSQL [pg_basebackup :octicons-link-external-16:](https://www.postgresql.org/docs/15/app-pgbasebackup.html)** + - **PostgreSQL [pg_basebackup :octicons-link-external-16:](https://www.postgresql.org/docs/16/app-pgbasebackup.html)** 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.