Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pages/common/pg_verifybackup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# pg_verifybackup

> Verify the integrity of a base backup of a PostgreSQL cluster.
> More information: <https://www.postgresql.org/docs/current/app-pgverifybackup.html>.

- Verify a backup stored in a specific directory:

`pg_verifybackup {{path/to/backup}}`

- Verify a backup showing progress information:

`pg_verifybackup {{[-P|--progress]}} {{path/to/backup}}`

- Verify a backup and exit immediately on first error:

`pg_verifybackup {{[-e|--exit-on-error]}} {{path/to/backup}}`

- Verify a backup ignoring specific files or directories:

`pg_verifybackup {{[-i|--ignore]}} {{path/to/file_or_directory}} {{path/to/backup}}`

- Verify a backup with a manifest file in a different location:

`pg_verifybackup {{[-m|--manifest-path]}} {{path/to/backup_manifest}} {{path/to/backup}}`

- Display help:

`pg_verifybackup {{[-?|--help]}}`