1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-05 13:20:31 +02:00

enabling archive_mode is required

This commit is contained in:
Sergey Bronnikov 2016-12-16 18:56:47 +04:00 committed by GitHub
parent 1874b89d30
commit 9748817b00

View File

@ -116,6 +116,7 @@ You need to enable WAL archive by adding following lines to postgresql.conf:
```
wal_level = archive
archive_mode = on
archive_command = 'test ! -f /home/postgres/backup/wal/%f && cp %p /home/postgres/backup/wal/%f'
```