sudo wget -q -O - \ https://github.com/pgbackrest/pgbackrest/archive/release/2.08.tar.gz | \ sudo tar zx -C /root
sudo apt-get install build-essential libssl-dev libxml2-dev libperl-dev zlib1g-dev
perl -V | grep USE_64_BIT_INT
USE_64_BIT_ALL USE_64_BIT_INT USE_ITHREADS
sudo make -s -C /root/pgbackrest-release-2.08/src
sudo scp build:/root/pgbackrest-release-2.08/src/pgbackrest /usr/bin
sudo chmod 755 /usr/bin/pgbackrest
sudo apt-get install libdbd-pg-perl
sudo mkdir -p -m 770 /var/log/pgbackrest
sudo chown postgres:postgres /var/log/pgbackrest
sudo mkdir -p /etc/pgbackrest
sudo mkdir -p /etc/pgbackrest/conf.d
sudo touch /etc/pgbackrest/pgbackrest.conf
sudo chmod 640 /etc/pgbackrest/pgbackrest.conf
sudo chown postgres:postgres /etc/pgbackrest/pgbackrest.conf
sudo -u postgres pgbackrest
pgBackRest 2.08 - General help Usage: pgbackrest [options] [command] Commands: archive-get Get a WAL segment from the archive. archive-push Push a WAL segment to the archive. backup Backup a database cluster. check Check the configuration. expire Expire backups that exceed retention. help Get help. info Retrieve information about backups. restore Restore a database cluster. stanza-create Create the required stanza data. stanza-delete Delete a stanza. stanza-upgrade Upgrade a stanza. start Allow pgBackRest processes to run. stop Stop pgBackRest processes from running. version Get version. Use 'pgbackrest help [command]' for more information.
sudo -u postgres /usr/lib/postgresql/9.4/bin/initdb \ -D /var/lib/postgresql/9.4/demo -k -A peer
sudo pg_createcluster 9.4 demo
Configuring already existing cluster (configuration: /etc/postgresql/9.4/demo, data: /var/lib/postgresql/9.4/demo, owner: 106:110) Ver Cluster Port Status Owner Data directory Log file 9.4 demo 5432 down postgres /var/lib/postgresql/9.4/demo /var/log/postgresql/postgresql-9.4-demo.log
sudo -u postgres bash -c ' \ export PGBACKREST_LOG_PATH=/path/set/by/env && \ pgbackrest --log-level-console=error help backup log-path'
pgBackRest 2.08 - 'backup' command - 'log-path' option help Path where log files are stored. The log path provides a location for pgBackRest to store log files. Note that if log-level-file=off then no log path is required.
current: /path/set/by/env
default: /var/log/pgbackrest
sudo mkdir -p /var/lib/pgbackrest
sudo chmod 750 /var/lib/pgbackrest
sudo chown postgres:postgres /var/lib/pgbackrest
sudo pg_ctlcluster 9.4 demo restart
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stanza-create
P00 INFO: stanza-create command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --stanza=demo
P00 INFO: stanza-create command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info check
P00 INFO: check command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --stanza=demo
P00 INFO: WAL segment 000000010000000000000001 successfully stored in the archive at '/var/lib/pgbackrest/archive/demo/9.4-1/0000000100000000/000000010000000000000001-8f55f94bac91716acfc144cb1ed3d1bcaf5742dd.gz'
P00 INFO: check command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-full=2 --stanza=demo
P00 WARN: no prior backup exists, incr backup has been changed to full
P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:44:53": backup begins after the next regular checkpoint completes P00 INFO: backup start archive = 000000010000000000000002, lsn = 0/2000028 [filtered 754 lines of output] P01 INFO: backup file /var/lib/postgresql/9.4/demo/base/1/11895 (0B, 100%) P01 INFO: backup file /var/lib/postgresql/9.4/demo/base/1/11885 (0B, 100%)
P00 INFO: full backup size = 19.2MB
P00 INFO: execute exclusive pg_stop_backup() and wait for all WAL segments to archive P00 INFO: backup stop archive = 000000010000000000000002, lsn = 0/2000128 [filtered 4 lines of output]
sudo -u postgres pgbackrest --stanza=demo --type=diff \ --log-level-console=info backup
[filtered 4 lines of output] P01 INFO: backup file /var/lib/postgresql/9.4/demo/global/pg_control (8KB, 97%) checksum cd623c27096f68e44ce5d5e6da4a1ce64b803fc4 P01 INFO: backup file /var/lib/postgresql/9.4/demo/backup_label (236B, 100%) checksum ea8d83192cc6c666aa24618dad8bf703c7771e2d
P00 INFO: diff backup size = 8.2KB
P00 INFO: execute exclusive pg_stop_backup() and wait for all WAL segments to archive P00 INFO: backup stop archive = 000000010000000000000003, lsn = 0/30000F0 [filtered 4 lines of output]
#m h dom mon dow command 30 06 * * 0 pgbackrest --type=full --stanza=demo backup 30 06 * * 1-6 pgbackrest --type=diff --stanza=demo backup
sudo -u postgres pgbackrest info
stanza: demo status: ok cipher: aes-256-cbc db (current) wal archive min/max (9.4-1): 000000010000000000000002 / 000000010000000000000003
full backup: 20190102-064453F
timestamp start/stop: 2019-01-02 06:44:53 / 2019-01-02 06:45:08 wal start/stop: 000000010000000000000002 / 000000010000000000000002 database size: 19.2MB, backup size: 19.2MB repository size: 2.2MB, repository backup size: 2.2MB
diff backup: 20190102-064453F_20190102-064509D
timestamp start/stop: 2019-01-02 06:45:09 / 2019-01-02 06:45:13 wal start/stop: 000000010000000000000003 / 000000010000000000000003 database size: 19.2MB, backup size: 8.2KB repository size: 2.2MB, repository backup size: 400B backup reference list: 20190102-064453F
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres rm /var/lib/postgresql/9.4/demo/global/pg_control
sudo pg_ctlcluster 9.4 demo start
The PostgreSQL server failed to start. Please check the log output:
postgres: could not find the database system
Expected to find it in the directory "/var/lib/postgresql/9.4/demo", but could not open file "/var/lib/postgresql/9.4/demo/global/pg_control": No such file or directory
sudo -u postgres find /var/lib/postgresql/9.4/demo -mindepth 1 -delete
sudo -u postgres pgbackrest --stanza=demo restore
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres pgbackrest --stanza=demo --type=incr \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-full=2 --stanza=demo --type=incr P00 INFO: last backup label = 20190102-064453F_20190102-064509D, version = 2.08
P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:45:35": backup begins after the next regular checkpoint completes
P00 INFO: backup start archive = 000000020000000000000005, lsn = 0/5000028 P00 WARN: a timeline switch has occurred since the last backup, enabling delta checksum [filtered 9 lines of output]
sudo -u postgres pgbackrest --stanza=demo --type=incr \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-full=2 --stanza=demo --start-fast --type=incr P00 INFO: last backup label = 20190102-064453F_20190102-064535I, version = 2.08
P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:45:49": backup begins after the requested immediate checkpoint completes
P00 INFO: backup start archive = 000000020000000000000007, lsn = 0/7000028 P01 INFO: backup file /var/lib/postgresql/9.4/demo/global/pg_control (8KB, 97%) checksum 2ba75dfe45ba41bff94d0354bd4e62dc4eebdf3c [filtered 8 lines of output]
sudo chmod 550 /var/lib/pgbackrest/backup/demo/
sudo -u postgres pgbackrest --stanza=demo --type=incr \ --log-level-console=info backup
[filtered 2 lines of output] P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:46:32": backup begins after the requested immediate checkpoint completes P00 INFO: backup start archive = 000000020000000000000009, lsn = 0/9000060
P00 ERROR: [047]: unable to create path '/var/lib/pgbackrest/backup/demo/20190102-064453F_20190102-064632I': Permission denied
P00 INFO: backup command end: aborted with exception [047]
sudo chmod 750 /var/lib/pgbackrest/backup/demo/
sudo -u postgres pgbackrest --stanza=demo --type=incr \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-full=2 --stanza=demo --start-fast --type=incr P00 INFO: last backup label = 20190102-064453F_20190102-064549I, version = 2.08 P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:46:46": backup begins after the requested immediate checkpoint completes
P00 ERROR: [057]: ERROR: a backup is already in progress
HINT: Run pg_stop_backup() and try again.: select to_char(current_timestamp, 'YYYY-MM-DD HH24:MI:SS.US TZ'), pg_xlogfile_name(lsn), lsn::text, (select setting::int8 from pg_settings where name = 'wal_segment_size') * (select setting::int8 from pg_settings where name = 'wal_block_size') from pg_start_backup('pgBackRest backup started at 2019-01-02 06:46:46', true) as lsn
sudo -u postgres pgbackrest --stanza=demo --type=incr \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-full=2 --stanza=demo --start-fast --stop-auto --type=incr P00 INFO: last backup label = 20190102-064453F_20190102-064549I, version = 2.08
P00 WARN: the cluster is already in backup mode but no pgBackRest backup process is running. pg_stop_backup() will be called so a new backup can be started.
P00 INFO: execute exclusive pg_stop_backup() and wait for all WAL segments to archive
P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:46:54": backup begins after the requested immediate checkpoint completes
P00 INFO: backup start archive = 00000002000000000000000A, lsn = 0/A000028 P01 INFO: backup file /var/lib/postgresql/9.4/demo/global/pg_control (8KB, 97%) checksum c9afa2d3b11e3ce059b95c1a3ed255cdbbea5950 [filtered 8 lines of output]
sudo -u postgres pgbackrest --output=json info
[ { "archive" : [ { "database" : { "id" : 1 }, "id" : "9.4-1", "max" : "00000002000000000000000A", "min" : "000000010000000000000002" } ], "backup" : [ { "archive" : { "start" : "000000010000000000000002", "stop" : "000000010000000000000002" }, "backrest" : { "format" : 5, "version" : "2.08" }, "database" : { "id" : 1 }, "info" : { "delta" : 20162900, "repository" : { "delta" : 2389024, "size" : 2389024 }, "size" : 20162900 }, "label" : "20190102-064453F", "prior" : null, "reference" : null, "timestamp" : { "start" : 1546411493, "stop" : 1546411508 }, "type" : "full" }, { "archive" : { "start" : "000000010000000000000003", "stop" : "000000010000000000000003" }, "backrest" : { "format" : 5, "version" : "2.08" }, "database" : { "id" : 1 }, "info" : { "delta" : 8428, "repository" : { "delta" : 400, "size" : 2389024 }, "size" : 20162900 }, "label" : "20190102-064453F_20190102-064509D", "prior" : "20190102-064453F", "reference" : [ "20190102-064453F" ], "timestamp" : { "start" : 1546411509, "stop" : 1546411513 }, "type" : "diff" }, { "archive" : { "start" : "000000020000000000000005", "stop" : "000000020000000000000005" }, "backrest" : { "format" : 5, "version" : "2.08" }, "database" : { "id" : 1 }, "info" : { "delta" : 8428, "repository" : { "delta" : 400, "size" : 2389024 }, "size" : 20162900 }, "label" : "20190102-064453F_20190102-064535I", "prior" : "20190102-064453F_20190102-064509D", "reference" : [ "20190102-064453F" ], "timestamp" : { "start" : 1546411535, "stop" : 1546411544 }, "type" : "incr" }, { "archive" : { "start" : "000000020000000000000007", "stop" : "000000020000000000000007" }, "backrest" : { "format" : 5, "version" : "2.08" }, "database" : { "id" : 1 }, "info" : { "delta" : 8428, "repository" : { "delta" : 400, "size" : 2389024 }, "size" : 20162900 }, "label" : "20190102-064453F_20190102-064549I", "prior" : "20190102-064453F_20190102-064535I", "reference" : [ "20190102-064453F" ], "timestamp" : { "start" : 1546411549, "stop" : 1546411573 }, "type" : "incr" }, { "archive" : { "start" : "00000002000000000000000A", "stop" : "00000002000000000000000A" }, "backrest" : { "format" : 5, "version" : "2.08" }, "database" : { "id" : 1 }, "info" : { "delta" : 8428, "repository" : { "delta" : 400, "size" : 2389024 }, "size" : 20162900 }, "label" : "20190102-064453F_20190102-064654I", "prior" : "20190102-064453F_20190102-064549I", "reference" : [ "20190102-064453F" ], "timestamp" : { "start" : 1546411614, "stop" : 1546411621 }, "type" : "incr" } ], "cipher" : "aes-256-cbc", "db" : [ { "id" : 1, "system-id" : 6641786569162842418, "version" : "9.4" } ], "name" : "demo", "status" : { "code" : 0, "message" : "ok" } } ]
sudo -u postgres cat \ /var/lib/postgresql/pgbackrest/doc/example/pgsql-pgbackrest-info.sql
-- An example of monitoring pgBackRest from within PostgresSQL -- -- Use copy to export data from the pgBackRest info command into the jsonb -- type so it can be queried directly by PostgresSQL. -- Create monitor schema create schema monitor; -- Get pgBackRest info in JSON format create function monitor.pgbackrest_info() returns jsonb AS $$ declare data jsonb; begin -- Create a temp table to hold the JSON data create temp table temp_pgbackrest_data (data jsonb); -- Copy data into the table directory from the pgBackRest into command copy temp_pgbackrest_data (data) from program 'pgbackrest --output=json info | tr ''\n'' '' ''' (format text); select temp_pgbackrest_data.data into data from temp_pgbackrest_data; drop table temp_pgbackrest_data; return data; end $$ language plpgsql;
sudo -u postgres psql -f \ /var/lib/postgresql/pgbackrest/doc/example/pgsql-pgbackrest-info.sql
sudo -u postgres cat \ /var/lib/postgresql/pgbackrest/doc/example/pgsql-pgbackrest-query.sql
-- Get last successful backup for each stanza -- -- Requires the monitor.pgbackrest_info function. with stanza as ( select data->'name' as name, data->'backup'->( jsonb_array_length(data->'backup') - 1) as last_backup, data->'archive'->( jsonb_array_length(data->'archive') - 1) as current_archive from jsonb_array_elements(monitor.pgbackrest_info()) as data ) select name, to_timestamp( (last_backup->'timestamp'->>'stop')::numeric) as last_successful_backup, current_archive->>'max' as last_archived_wal from stanza;
sudo -u postgres psql -f \ /var/lib/postgresql/pgbackrest/doc/example/pgsql-pgbackrest-query.sql
name | last_successful_backup | last_archived_wal --------+------------------------+-------------------------- "demo" | 2019-01-02 06:47:01+00 | 00000002000000000000000A (1 row)
sudo apt-get install jq
sudo -u postgres pgbackrest --output=json --stanza=demo info | \ jq '.[0] | .backup[-1] | .timestamp.stop'
1546411621
sudo -u postgres pgbackrest --output=json --stanza=demo info | \ jq '.[0] | .archive[-1] | .max'
"00000002000000000000000A"
sudo -u postgres pgbackrest --stanza=demo --type=full \ --log-level-console=detail backup
[filtered 763 lines of output] P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
P00 DETAIL: archive retention on backup 20190102-064453F, archiveId = 9.4-1, start = 000000010000000000000002
P00 DETAIL: no archive to remove, archiveId = 9.4-1 P00 INFO: expire command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo --type=full \ --log-level-console=info backup
[filtered 763 lines of output] P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
P00 INFO: expire full backup set: 20190102-064453F, 20190102-064453F_20190102-064509D, 20190102-064453F_20190102-064535I, 20190102-064453F_20190102-064549I, 20190102-064453F_20190102-064654I
P00 INFO: remove expired backup 20190102-064453F_20190102-064654I P00 INFO: remove expired backup 20190102-064453F_20190102-064549I [filtered 3 lines of output]
rollingset of differentials for the last day or more. This allows quick restores to recent points-in-time but reduces overall space consumption.
sudo -u postgres pgbackrest --stanza=demo --type=diff backup
sudo -u postgres pgbackrest --stanza=demo --type=incr backup
sudo -u postgres pgbackrest --stanza=demo --type=diff \ --log-level-console=info backup
[filtered 10 lines of output] P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
P00 INFO: expire diff backup set: 20190102-064758F_20190102-064818D, 20190102-064758F_20190102-064828I
P00 INFO: remove expired backup 20190102-064758F_20190102-064828I P00 INFO: remove expired backup 20190102-064758F_20190102-064818D
sudo -u postgres pgbackrest --stanza=demo --type=diff \ --log-level-console=info backup
[filtered 7 lines of output] P00 INFO: execute exclusive pg_stop_backup() and wait for all WAL segments to archive P00 INFO: backup stop archive = 000000020000000000000014, lsn = 0/140000F0
P00 INFO: new backup label = 20190102-064758F_20190102-064855D
P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
sudo -u postgres pgbackrest --stanza=demo --log-level-console=detail \ --repo1-retention-archive-type=diff --repo1-retention-archive=1 expire
P00 INFO: expire command begin 2.08: --log-level-console=detail --log-level-stderr=off --no-log-timestamp --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/var/lib/pgbackrest --repo1-retention-archive=1 --repo1-retention-archive-type=diff --repo1-retention-diff=2 --repo1-retention-full=2 --stanza=demo P00 DETAIL: archive retention on backup 20190102-064736F, archiveId = 9.4-1, start = 00000002000000000000000C, stop = 00000002000000000000000C P00 DETAIL: archive retention on backup 20190102-064758F, archiveId = 9.4-1, start = 00000002000000000000000D, stop = 00000002000000000000000D
P00 DETAIL: archive retention on backup 20190102-064758F_20190102-064839D, archiveId = 9.4-1, start = 000000020000000000000010, stop = 000000020000000000000010
P00 DETAIL: archive retention on backup 20190102-064758F_20190102-064855D, archiveId = 9.4-1, start = 000000020000000000000014
P00 DETAIL: remove archive: archiveId = 9.4-1, start = 00000002000000000000000E, stop = 00000002000000000000000F P00 DETAIL: remove archive: archiveId = 9.4-1, start = 000000020000000000000011, stop = 000000020000000000000013
P00 INFO: expire command end: completed successfully
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \ --log-level-console=detail restore
[filtered 693 lines of output] P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/base/12134/PG_VERSION - exists and matches backup (4B, 99%) checksum 8dbabb96e032b8d9f1993c0e4b9141e71ade01a1 P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/base/1/PG_VERSION - exists and matches backup (4B, 99%) checksum 8dbabb96e032b8d9f1993c0e4b9141e71ade01a1
P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/PG_VERSION - exists and matches backup (4B, 100%) checksum 8dbabb96e032b8d9f1993c0e4b9141e71ade01a1
P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/global/12086 - exists and is zero size (0B, 100%) P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/global/12038 - exists and is zero size (0B, 100%) [filtered 83 lines of output] P01 DETAIL: restore file /var/lib/postgresql/9.4/demo/base/1/11885 - exists and is zero size (0B, 100%) P00 INFO: write /var/lib/postgresql/9.4/demo/recovery.conf
P00 INFO: restore global/pg_control (performed last to ensure aborted restores cannot be started)
P00 INFO: restore command end: completed successfully
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres psql -c "create database test1;"
CREATE DATABASE
sudo -u postgres psql -c "create database test2;"
CREATE DATABASE
sudo -u postgres pgbackrest --stanza=demo --type=incr backup
sudo -u postgres psql -c "create table test1_table (id int); \ insert into test1_table (id) values (1);" test1
INSERT 0 1
sudo -u postgres psql -c "create table test2_table (id int); \ insert into test2_table (id) values (2);" test2
INSERT 0 1
sudo -u postgres du -sh /var/lib/postgresql/9.4/demo/base/24576
6.5M /var/lib/postgresql/9.4/demo/base/24576
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \ --db-include=test2 restore
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres psql -c "select * from test2_table;" test2
id ---- 2 (1 row)
sudo -u postgres psql -c "select * from test1_table;" test1
psql: FATAL: relation mapping file "base/24576/pg_filenode.map" contains invalid data
sudo -u postgres du -sh /var/lib/postgresql/9.4/demo/base/24576
152K /var/lib/postgresql/9.4/demo/base/24576
sudo -u postgres psql -c "drop database test1;"
DROP DATABASE
sudo -u postgres psql -c "select oid, datname from pg_database order by oid;"
oid | datname -------+----------- 1 | template1 12134 | template0 12139 | postgres
24577 | test2
(4 rows)
sudo -u postgres pgbackrest --stanza=demo --type=diff backup
sudo -u postgres psql -c "begin; \ create table important_table (message text); \ insert into important_table values ('Important Data'); \ commit; \ select * from important_table;"
message ----------------
Important Data
(1 row)
sudo -u postgres psql -Atc "select current_timestamp"
2019-01-02 06:50:44.892825+00
sudo -u postgres psql -c "begin; \ drop table important_table; \ commit; \ select * from important_table;"
ERROR: relation "important_table" does not exist
LINE 1: ...le important_table; commit; select * from important_... ^
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \ --type=time "--target=2019-01-02 06:50:44.892825+00" restore
sudo -u postgres cat /var/lib/postgresql/9.4/demo/recovery.conf
restore_command = 'pgbackrest --stanza=demo archive-get %f "%p"'
recovery_target_time = '2019-01-02 06:50:44.892825+00'
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres psql -c "select * from important_table"
message ----------------
Important Data
(1 row)
sudo -u postgres cat /var/log/postgresql/postgresql-9.4-demo.log
LOG: database system was interrupted; last known up at 2019-01-02 06:50:35 UTC
LOG: starting point-in-time recovery to 2019-01-02 06:50:44.892825+00
LOG: restored log file "00000004.history" from archive LOG: restored log file "00000004000000000000001A" from archive LOG: redo starts at 0/1A000028 LOG: consistent recovery state reached at 0/1A000128 LOG: restored log file "00000004000000000000001B" from archive
LOG: recovery stopping before commit of transaction 689, time 2019-01-02 06:50:45.283203+00
LOG: redo done at 0/1B016E58
LOG: last completed transaction was at log time 2019-01-02 06:50:44.421633+00
LOG: selected new timeline ID: 5 LOG: restored log file "00000004.history" from archive [filtered 5 lines of output]
sudo -u postgres psql -c "begin; \ drop table important_table; \ commit; \ select * from important_table;"
ERROR: relation "important_table" does not exist
LINE 1: ...le important_table; commit; select * from important_... ^
sudo -u postgres pgbackrest --stanza=demo --type=incr backup
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \ --type=time "--target=2019-01-02 06:50:44.892825+00" restore
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres psql -c "select * from important_table"
ERROR: relation "important_table" does not exist
LINE 1: select * from important_table ^
recovery stopping before...and
last completed transaction...log messages. If they are not present then the recovery to the specified point-in-time was not successful.
sudo -u postgres cat /var/log/postgresql/postgresql-9.4-demo.log
LOG: database system was interrupted; last known up at 2019-01-02 06:50:59 UTC
LOG: starting point-in-time recovery to 2019-01-02 06:50:44.892825+00
LOG: restored log file "00000005.history" from archive LOG: restored log file "00000005000000000000001C" from archive LOG: redo starts at 0/1C000028
LOG: consistent recovery state reached at 0/1C0000F0
LOG: redo done at 0/1C0000F0 LOG: restored log file "00000005000000000000001C" from archive [filtered 9 lines of output]
sudo -u postgres pgbackrest info
stanza: demo status: ok cipher: aes-256-cbc db (current) wal archive min/max (9.4-1): 00000002000000000000000C / 00000005000000000000001C full backup: 20190102-064736F timestamp start/stop: 2019-01-02 06:47:36 / 2019-01-02 06:47:56 wal start/stop: 00000002000000000000000C / 00000002000000000000000C database size: 19.2MB, backup size: 19.2MB repository size: 2.2MB, repository backup size: 2.2MB full backup: 20190102-064758F timestamp start/stop: 2019-01-02 06:47:58 / 2019-01-02 06:48:13 wal start/stop: 00000002000000000000000D / 00000002000000000000000D database size: 19.2MB, backup size: 19.2MB repository size: 2.2MB, repository backup size: 2.2MB diff backup: 20190102-064758F_20190102-064855D timestamp start/stop: 2019-01-02 06:48:55 / 2019-01-02 06:49:02 wal start/stop: 000000020000000000000014 / 000000020000000000000014 database size: 19.2MB, backup size: 8.2KB repository size: 2.2MB, repository backup size: 400B backup reference list: 20190102-064758F incr backup: 20190102-064758F_20190102-064942I timestamp start/stop: 2019-01-02 06:49:42 / 2019-01-02 06:50:06 wal start/stop: 000000030000000000000017 / 000000030000000000000017 database size: 31.7MB, backup size: 12.5MB repository size: 3.7MB, repository backup size: 1.5MB backup reference list: 20190102-064758F
diff backup: 20190102-064758F_20190102-065034D
timestamp start/stop: 2019-01-02 06:50:34 / 2019-01-02 06:50:43 wal start/stop: 00000004000000000000001A / 00000004000000000000001A database size: 25.5MB, backup size: 6.3MB repository size: 3MB, repository backup size: 771.5KB backup reference list: 20190102-064758F incr backup: 20190102-064758F_20190102-065058I timestamp start/stop: 2019-01-02 06:50:58 / 2019-01-02 06:51:05 wal start/stop: 00000005000000000000001C / 00000005000000000000001C database size: 25.5MB, backup size: 1.7MB repository size: 3MB, repository backup size: 201.4KB
backup reference list: 20190102-064758F, 20190102-064758F_20190102-065034D
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \ --type=time "--target=2019-01-02 06:50:44.892825+00" \ --set=20190102-064758F_20190102-065034D restore
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres psql -c "select * from important_table"
message ----------------
Important Data
(1 row)
recovery stopping before...and
last completed transaction...messages showing that the recovery was successful.
sudo -u postgres cat /var/log/postgresql/postgresql-9.4-demo.log
LOG: database system was interrupted; last known up at 2019-01-02 06:50:35 UTC
LOG: starting point-in-time recovery to 2019-01-02 06:50:44.892825+00
LOG: restored log file "00000004.history" from archive LOG: restored log file "00000004000000000000001A" from archive LOG: redo starts at 0/1A000028 LOG: consistent recovery state reached at 0/1A000128 LOG: restored log file "00000004000000000000001B" from archive
LOG: recovery stopping before commit of transaction 689, time 2019-01-02 06:50:45.283203+00
LOG: redo done at 0/1B016E58
LOG: last completed transaction was at log time 2019-01-02 06:50:44.421633+00
LOG: restored log file "00000005.history" from archive LOG: restored log file "00000006.history" from archive [filtered 7 lines of output]
sudo apt-get install libio-socket-ssl-perl libxml-libxml-perl
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::demo-bucket" ], "Condition": { "StringEquals": { "s3:prefix": [ "", "demo-repo" ], "s3:delimiter": [ "/" ] } } }, { "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::demo-bucket" ], "Condition": { "StringLike": { "s3:prefix": [ "demo-repo/*" ] } } }, { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:DeleteObject" ], "Resource": [ "arn:aws:s3:::demo-bucket/demo-repo/*" ] } ] }
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stanza-create
P00 INFO: stanza-create command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-type=none --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.amazonaws.com --repo1-s3-key=--repo1-s3-key-secret= --repo1-s3-region=us-east-1 --no-repo1-s3-verify-ssl --repo1-type=s3 --stanza=demo
P00 INFO: stanza-create command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo \ --log-level-console=info backup
P00 INFO: backup command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --process-max=4 --repo1-cipher-type=none --repo1-path=/demo-repo --repo1-retention-diff=2 --repo1-retention-full=2 --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.amazonaws.com --repo1-s3-key=--repo1-s3-key-secret= --repo1-s3-region=us-east-1 --no-repo1-s3-verify-ssl --repo1-type=s3 --stanza=demo --start-fast --stop-auto
P00 WARN: no prior backup exists, incr backup has been changed to full
P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:51:46": backup begins after the requested immediate checkpoint completes P00 INFO: backup start archive = 00000007000000000000001C, lsn = 0/1C000028 [filtered 995 lines of output] P02 INFO: backup file /var/lib/postgresql/9.4/demo/base/1/11895 (0B, 100%) P04 INFO: backup file /var/lib/postgresql/9.4/demo/base/1/11885 (0B, 100%)
P00 INFO: full backup size = 25.5MB
P00 INFO: execute exclusive pg_stop_backup() and wait for all WAL segments to archive P00 INFO: backup stop archive = 00000007000000000000001C, lsn = 0/1C000128 [filtered 4 lines of output]
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stop
P00 INFO: stop command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --repo1-cipher-type=none --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.amazonaws.com --repo1-s3-key=--repo1-s3-key-secret= --repo1-s3-region=us-east-1 --no-repo1-s3-verify-ssl --repo1-type=s3 --stanza=demo
P00 INFO: stop command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stanza-delete
P00 INFO: stanza-delete command begin 2.08: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-cipher-type=none --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.amazonaws.com --repo1-s3-key=--repo1-s3-key-secret= --repo1-s3-region=us-east-1 --no-repo1-s3-verify-ssl --repo1-type=s3 --stanza=demo
P00 INFO: stanza-delete command end: completed successfully
sudo adduser --disabled-password --gecos "" pgbackrest
sudo scp build:/root/pgbackrest-release-2.08/src/pgbackrest /usr/bin
sudo chmod 755 /usr/bin/pgbackrest
sudo apt-get install libdbd-pg-perl
sudo mkdir -p -m 770 /var/log/pgbackrest
sudo chown pgbackrest:pgbackrest /var/log/pgbackrest
sudo mkdir -p /etc/pgbackrest
sudo mkdir -p /etc/pgbackrest/conf.d
sudo touch /etc/pgbackrest/pgbackrest.conf
sudo chmod 640 /etc/pgbackrest/pgbackrest.conf
sudo chown pgbackrest:pgbackrest /etc/pgbackrest/pgbackrest.conf
sudo mkdir -p /var/lib/pgbackrest
sudo chmod 750 /var/lib/pgbackrest
sudo chown pgbackrest:pgbackrest /var/lib/pgbackrest
sudo -u pgbackrest mkdir -m 750 /home/pgbackrest/.ssh
sudo -u pgbackrest ssh-keygen -f /home/pgbackrest/.ssh/id_rsa \ -t rsa -b 4096 -N ""
sudo -u postgres mkdir -m 750 -p /var/lib/postgresql/.ssh
sudo -u postgres ssh-keygen -f /var/lib/postgresql/.ssh/id_rsa \ -t rsa -b 4096 -N ""
(echo -n 'no-agent-forwarding,no-X11-forwarding,no-port-forwarding,' && \ echo -n 'command="/usr/bin/pgbackrest ${SSH_ORIGINAL_COMMAND#* }" ' && \ sudo ssh root@pg-primary cat /var/lib/postgresql/.ssh/id_rsa.pub) | \ sudo -u pgbackrest tee -a /home/pgbackrest/.ssh/authorized_keys
(echo -n 'no-agent-forwarding,no-X11-forwarding,no-port-forwarding,' && \ echo -n 'command="/usr/bin/pgbackrest ${SSH_ORIGINAL_COMMAND#* }" ' && \ sudo ssh root@repository cat /home/pgbackrest/.ssh/id_rsa.pub) | \ sudo -u postgres tee -a /var/lib/postgresql/.ssh/authorized_keys
sudo -u pgbackrest ssh postgres@pg-primary
sudo -u postgres ssh pgbackrest@repository
sudo -u pgbackrest pgbackrest --stanza=demo stanza-create
sudo -u postgres pgbackrest --stanza=demo check
sudo -u pgbackrest pgbackrest --stanza=demo check
sudo -u pgbackrest pgbackrest --stanza=demo backup
P00 WARN: no prior backup exists, incr backup has been changed to full
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo pg_ctlcluster 9.4 demo start
sudo -u pgbackrest pgbackrest --stanza=demo backup
sudo -u pgbackrest pgbackrest --stanza=demo --type=full backup
sudo -u pgbackrest pgbackrest --stanza=demo --type=full backup
sudo -u pgbackrest pgbackrest info
stanza: demo status: ok cipher: none db (current) wal archive min/max (9.4-1): 000000080000000000000024 / 000000080000000000000025 full backup: 20190102-065355F
timestamp start/stop: 2019-01-02 06:53:55 / 2019-01-02 06:54:12
wal start/stop: 000000080000000000000024 / 000000080000000000000024 database size: 25.5MB, backup size: 25.5MB repository size: 3MB, repository backup size: 3MB full backup: 20190102-065414F
timestamp start/stop: 2019-01-02 06:54:14 / 2019-01-02 06:54:26
wal start/stop: 000000080000000000000025 / 000000080000000000000025 database size: 25.5MB, backup size: 25.5MB repository size: 3MB, repository backup size: 3MB
sudo -u postgres pgbackrest stop
sudo -u pgbackrest pgbackrest --stanza=demo backup
P00 ERROR: [062]: raised from remote process on 'pg-primary': stop file exists for all stanzas
sudo -u postgres pgbackrest stop
P00 WARN: stop file already exists for all stanzas
sudo -u postgres pgbackrest start
sudo -u postgres pgbackrest --stanza=demo stop
sudo -u pgbackrest pgbackrest --stanza=demo backup
P00 ERROR: [062]: raised from remote process on 'pg-primary': stop file exists for stanza demo
sudo -u postgres pgbackrest --stanza=demo start
sudo scp build:/root/pgbackrest-release-2.08/src/pgbackrest /usr/bin
sudo chmod 755 /usr/bin/pgbackrest
sudo apt-get install libdbd-pg-perl
sudo mkdir -p -m 770 /var/log/pgbackrest
sudo chown postgres:postgres /var/log/pgbackrest
sudo mkdir -p /etc/pgbackrest
sudo mkdir -p /etc/pgbackrest/conf.d
sudo touch /etc/pgbackrest/pgbackrest.conf
sudo chmod 640 /etc/pgbackrest/pgbackrest.conf
sudo chown postgres:postgres /etc/pgbackrest/pgbackrest.conf
sudo -u postgres mkdir -m 750 -p /var/lib/postgresql/.ssh
sudo -u postgres ssh-keygen -f /var/lib/postgresql/.ssh/id_rsa \ -t rsa -b 4096 -N ""
(echo -n 'no-agent-forwarding,no-X11-forwarding,no-port-forwarding,' && \ echo -n 'command="/usr/bin/pgbackrest ${SSH_ORIGINAL_COMMAND#* }" ' && \ sudo ssh root@pg-standby cat /var/lib/postgresql/.ssh/id_rsa.pub) | \ sudo -u pgbackrest tee -a /home/pgbackrest/.ssh/authorized_keys
(echo -n 'no-agent-forwarding,no-X11-forwarding,no-port-forwarding,' && \ echo -n 'command="/usr/bin/pgbackrest ${SSH_ORIGINAL_COMMAND#* }" ' && \ sudo ssh root@repository cat /home/pgbackrest/.ssh/id_rsa.pub) | \ sudo -u postgres tee -a /var/lib/postgresql/.ssh/authorized_keys
sudo -u pgbackrest ssh postgres@pg-standby
sudo -u postgres ssh pgbackrest@repository
sudo pg_createcluster 9.4 demo
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo -u postgres cat /var/lib/postgresql/9.4/demo/recovery.conf
standby_mode = 'on' restore_command = 'pgbackrest --stanza=demo archive-get %f "%p"'
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres cat /var/log/postgresql/postgresql-9.4-demo.log
LOG: could not bind IPv6 socket: Cannot assign requested address HINT: Is another postmaster already running on port 5432? If not, wait a few seconds and retry. LOG: database system was interrupted; last known up at 2019-01-02 06:54:15 UTC
LOG: entering standby mode
LOG: incomplete startup packet LOG: restored log file "00000008.history" from archive [filtered 2 lines of output] LOG: redo starts at 0/25000028 LOG: consistent recovery state reached at 0/250000F0
LOG: database system is ready to accept read only connections
sudo -u postgres psql -c " \ begin; \ create table replicated_table (message text); \ insert into replicated_table values ('Important Data'); \ commit; \ select * from replicated_table";
message ----------------
Important Data
(1 row)
sudo -u postgres psql -c "select * from replicated_table;"
ERROR: relation "replicated_table" does not exist
LINE 1: select * from replicated_table; ^
sudo -u postgres psql -c "select *, current_timestamp from pg_switch_xlog()";
pg_switch_xlog | now ----------------+------------------------------- 0/26019A70 | 2019-01-02 06:55:34.082658+00 (1 row)
sudo -u postgres psql -c " \ select *, current_timestamp from replicated_table"
message | now ----------------+-------------------------------
Important Data | 2019-01-02 06:55:39.138356+00
(1 row)
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info check
P00 INFO: check command begin 2.08: --log-level-console=info --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-host=repository --stanza=demo
P00 INFO: switch xlog cannot be performed on the standby, all other checks passed successfully
P00 INFO: check command end: completed successfully
sudo -u postgres psql -c " \ create user replicator password 'jw8s0F4' replication";
CREATE ROLE
sudo -u postgres sh -c 'echo \ "host replication replicator 172.17.0.6/32 md5" \ >> /etc/postgresql/9.4/demo/pg_hba.conf'
sudo pg_ctlcluster 9.4 demo reload
sudo -u postgres sh -c 'echo \ "172.17.0.4:*:replication:replicator:jw8s0F4" \ >> /var/lib/postgresql/.pgpass'
sudo -u postgres chmod 600 /var/lib/postgresql/.pgpass
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo -u postgres cat /var/lib/postgresql/9.4/demo/recovery.conf
primary_conninfo = 'host=172.17.0.4 port=5432 user=replicator' standby_mode = 'on' restore_command = 'pgbackrest --stanza=demo archive-get %f "%p"'
sudo pg_ctlcluster 9.4 demo start
sudo -u postgres cat /var/log/postgresql/postgresql-9.4-demo.log
[filtered 10 lines of output] LOG: database system is ready to accept read only connections LOG: restored log file "000000080000000000000026" from archive
LOG: started streaming WAL from primary at 0/27000000 on timeline 8
sudo -u postgres psql -c " \ begin; \ create table stream_table (message text); \ insert into stream_table values ('Important Data'); \ commit; \ select *, current_timestamp from stream_table";
message | now ----------------+------------------------------
Important Data | 2019-01-02 06:55:57.19745+00
(1 row)
sudo -u postgres psql -c " \ select *, current_timestamp from stream_table"
message | now ----------------+-------------------------------
Important Data | 2019-01-02 06:55:57.664306+00
(1 row)
sudo mkdir -p -m 750 /var/spool/pgbackrest
sudo chown postgres:postgres /var/spool/pgbackrest
sudo mkdir -p -m 750 /var/spool/pgbackrest
sudo chown postgres:postgres /var/spool/pgbackrest
sudo -u postgres psql -c "alter user replicator password 'bogus'"
ALTER ROLE
sudo pg_ctlcluster 9.4 demo restart
looking aheadto see which WAL segments are ready to be archived beyond the request that PostgreSQL is currently making via the archive_command. WAL segments are transferred to the archive directly from the pg_xlog/pg_wal directory and success is only returned by the archive_command when the WAL segment has been safely stored in the archive.
sudo -u postgres psql -c " \ select pg_create_restore_point('test async push'); select pg_switch_xlog(); \ select pg_create_restore_point('test async push'); select pg_switch_xlog(); \ select pg_create_restore_point('test async push'); select pg_switch_xlog(); \ select pg_create_restore_point('test async push'); select pg_switch_xlog(); \ select pg_create_restore_point('test async push'); select pg_switch_xlog();"
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info check
P00 INFO: check command begin 2.08: --log-level-console=info --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --repo1-host=repository --stanza=demo
P00 INFO: WAL segment 00000008000000000000002C successfully stored in the archive at '/var/lib/pgbackrest/archive/demo/9.4-1/0000000800000000/00000008000000000000002C-55206cb0dca22ff15b90ec70d88ca335b8a42e79.gz'
P00 INFO: check command end: completed successfully
sudo -u postgres cat /var/log/pgbackrest/demo-archive-push-async.log
-------------------PROCESS START------------------- P00 INFO: archive-push command begin 2.08: [pg_xlog/000000080000000000000027] --archive-async --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: push 5 WAL file(s) to archive: 000000080000000000000027...00000008000000000000002B P01 DETAIL: pushed WAL file 000000080000000000000027 to archive P02 DETAIL: pushed WAL file 000000080000000000000028 to archive P01 DETAIL: pushed WAL file 000000080000000000000029 to archive P02 DETAIL: pushed WAL file 00000008000000000000002A to archive P01 DETAIL: pushed WAL file 00000008000000000000002B to archive
P00 INFO: archive-push command end: completed successfully -------------------PROCESS START------------------- P00 INFO: archive-push command begin 2.08: [pg_xlog/00000008000000000000002C] --archive-async --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: push 1 WAL file(s) to archive: 00000008000000000000002C P01 DETAIL: pushed WAL file 00000008000000000000002C to archive
P00 INFO: archive-push command end: completed successfully
sudo -u postgres cat /var/log/pgbackrest/demo-archive-get-async.log
-------------------PROCESS START------------------- P00 INFO: archive-get command begin 2.08: [000000080000000000000025, 000000080000000000000026, 000000080000000000000027, 000000080000000000000028, 000000080000000000000029, 00000008000000000000002A, 00000008000000000000002B, 00000008000000000000002C] --archive-async --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo P00 INFO: get 8 WAL file(s) from archive: 000000080000000000000025...00000008000000000000002C
P01 DETAIL: got WAL file 000000080000000000000025 from archive P02 DETAIL: got WAL file 000000080000000000000026 from archive
P01 DETAIL: WAL file 000000080000000000000027 not found in archive P02 DETAIL: WAL file 000000080000000000000028 not found in archive [filtered 33 lines of output] P00 INFO: archive-get command begin 2.08: [000000080000000000000027, 000000080000000000000028, 000000080000000000000029, 00000008000000000000002A, 00000008000000000000002B, 00000008000000000000002C, 00000008000000000000002D, 00000008000000000000002E] --archive-async --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/9.4/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo P00 INFO: get 8 WAL file(s) from archive: 000000080000000000000027...00000008000000000000002E
P01 DETAIL: got WAL file 000000080000000000000027 from archive P02 DETAIL: got WAL file 000000080000000000000028 from archive P02 DETAIL: got WAL file 00000008000000000000002A from archive P01 DETAIL: got WAL file 000000080000000000000029 from archive
P01 DETAIL: WAL file 00000008000000000000002C not found in archive P01 DETAIL: WAL file 00000008000000000000002D not found in archive P01 DETAIL: WAL file 00000008000000000000002E not found in archive
P02 DETAIL: got WAL file 00000008000000000000002B from archive
P00 INFO: archive-get command end: completed successfully [filtered 5 lines of output] P02 DETAIL: WAL file 00000008000000000000002F not found in archive P02 DETAIL: WAL file 000000080000000000000030 not found in archive
P01 DETAIL: got WAL file 00000008000000000000002C from archive
P00 INFO: archive-get command end: completed successfully [filtered 24 lines of output]
sudo -u postgres psql -c "alter user replicator password 'jw8s0F4'"
ALTER ROLE
sudo -u pgbackrest pgbackrest --stanza=demo --log-level-console=detail backup
[filtered 2 lines of output] P00 INFO: execute exclusive pg_start_backup() with label "pgBackRest backup started at 2019-01-02 06:56:22": backup begins after the requested immediate checkpoint completes P00 INFO: backup start archive = 00000008000000000000002E, lsn = 0/2E000028
P00 INFO: wait for replay on the standby to reach 0/2E000028 P00 INFO: replay on the standby reached 0/2E0000C8
P02 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/12007 (392KB, 20%) checksum c2daa57c2f174e372048c69d04c4f7cbaa6e23b0 P04 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/12009 (240KB, 32%) checksum 89225f4bc52166bd18b0ac1f6081172a17067b46 [filtered 9 lines of output] P02 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/11880 (32KB, 88%) checksum f9520d3d55206a085785aebae4f6c4aa1a8fdf00 P03 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/11879 (32KB, 90%) checksum 69bc55fdda5f5f8e5d95296aab559f71f0ddde81
P01 INFO: backup file pg-primary:/var/lib/postgresql/9.4/demo/global/pg_control (8KB, 90%) checksum d120b63246302deedc6730d22218ca159ae0a364
P04 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/11925 (24KB, 92%) checksum 8dc68ff7cd40bb13f381e94300567b0cbd58a4d0 P02 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/11900_fsm (24KB, 93%) checksum c526710668d4cb86fd1488df1151e66355f8e861 P04 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/global/11883 (16KB, 94%) checksum 67fceae5ba762d363ee233b324dda33f0dbf3b98
P01 INFO: backup file pg-primary:/var/lib/postgresql/9.4/demo/backup_label (238B, 94%) checksum 1496a368650fd934e7f59a652a8effcd1c2db746
P03 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/global/11884 (16KB, 95%) checksum af5f1cd5ffbea42738c187fbfa843f7b862b16c8 P02 INFO: backup file pg-standby:/var/lib/postgresql/9.4/demo/base/12139/11928 (16KB, 95%) checksum 88f69a89fb06001330674e448044c7bc5f03b675 [filtered 19 lines of output]
sudo pg_ctlcluster 9.4 demo stop
sudo pg_ctlcluster 9.4 demo stop
sudo -u postgres /usr/lib/postgresql/9.5/bin/initdb \ -D /var/lib/postgresql/9.5/demo -k -A peer
sudo pg_createcluster 9.5 demo
sudo -u postgres sh -c 'cd /var/lib/postgresql && \ /usr/lib/postgresql/9.5/bin/pg_upgrade \ --old-bindir=/usr/lib/postgresql/9.4/bin \ --new-bindir=/usr/lib/postgresql/9.5/bin \ --old-datadir=/var/lib/postgresql/9.4/demo \ --new-datadir=/var/lib/postgresql/9.5/demo \ --old-options=" -c config_file=/etc/postgresql/9.4/demo/postgresql.conf" \ --new-options=" -c config_file=/etc/postgresql/9.5/demo/postgresql.conf"'
[filtered 68 lines of output] Creating script to delete old cluster ok
Upgrade Complete
---------------- Optimizer statistics are not transferred by pg_upgrade so, [filtered 4 lines of output]
sudo cp /etc/postgresql/9.4/demo/pg_hba.conf \ /etc/postgresql/9.5/demo/pg_hba.conf
sudo -u pgbackrest pgbackrest --stanza=demo --no-online \ --log-level-console=info stanza-upgrade
P00 INFO: stanza-upgrade command begin 2.08: --no-backup-standby --log-level-console=info --log-level-stderr=off --no-log-timestamp --no-online --pg1-host=pg-primary --pg2-host=pg-standby --pg1-path=/var/lib/postgresql/9.5/demo --pg2-path=/var/lib/postgresql/9.5/demo --repo1-path=/var/lib/pgbackrest --stanza=demo
P00 INFO: stanza-upgrade command end: completed successfully
sudo pg_ctlcluster 9.5 demo start
sudo -u postgres pg_lsclusters
Ver Cluster Port Status Owner Data directory Log file 9.4 demo 5432 down postgres /var/lib/postgresql/9.4/demo /var/log/postgresql/postgresql-9.4-demo.log 9.5 demo 5432 online postgres /var/lib/postgresql/9.5/demo /var/log/postgresql/postgresql-9.5-demo.log
sudo -u postgres pgbackrest --stanza=demo check
sudo pg_dropcluster 9.4 demo
sudo pg_dropcluster 9.4 demo
sudo pg_createcluster 9.5 demo
sudo -u pgbackrest pgbackrest --stanza=demo check
sudo -u pgbackrest pgbackrest --stanza=demo --type=full backup
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo pg_ctlcluster 9.5 demo start
sudo -u postgres pgbackrest --stanza=demo check