2024-10-08 14:43:54 +09:00
|
|
|
# PgBackRest backup wrapper
|
|
|
|
|
|
|
|
|
|
Wrapper to call the full/differential backup on all stanzas
|
|
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
|
|
```txt
|
|
|
|
|
-b (backuptype): full/diff
|
2024-10-08 15:44:18 +09:00
|
|
|
-s (stanza): override stanza name, must be in stanza.cfg file
|
2024-10-08 14:43:54 +09:00
|
|
|
-l list available stanza
|
|
|
|
|
-t test run
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Either `-l` or `-b` option must be set
|
2024-10-08 15:44:18 +09:00
|
|
|
|
|
|
|
|
## Config
|
|
|
|
|
|
|
|
|
|
Two files must be created
|
|
|
|
|
|
|
|
|
|
### `config/pgbackrest.cfg`
|
|
|
|
|
|
|
|
|
|
Example file is `pgbackrest.sample.cfg`
|
|
|
|
|
|
|
|
|
|
This file holds the sudo_user for calling the commands
|
|
|
|
|
|
|
|
|
|
```ini
|
|
|
|
|
[PgBackRest]
|
2025-12-02 13:24:54 +09:00
|
|
|
sudo_user=postgres
|
2024-10-08 15:44:18 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### `config/stanza.cfg`
|
|
|
|
|
|
|
|
|
|
Example file is `stanza.sample.cfg`
|
|
|
|
|
|
|
|
|
|
This files holds the stanzas to backup
|
|
|
|
|
|
2025-12-02 13:24:54 +09:00
|
|
|
If the stanza has several repo settings as in "repo1-...", "repo2-..." then the repo to target can be listed in here by ":repo number"
|
|
|
|
|
|
2024-10-08 15:44:18 +09:00
|
|
|
```ini
|
|
|
|
|
[stanzas]
|
|
|
|
|
stanza_a
|
2025-12-02 13:24:54 +09:00
|
|
|
stanza_b:1
|
|
|
|
|
stanza_b:2
|
2024-10-08 15:44:18 +09:00
|
|
|
```
|