sudo wget -q -O - \
https://github.com/pgbackrest/pgbackrest/archive/release/2.15.1.tar.gz | \
sudo tar zx -C /rootsudo 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
(cd /root/pgbackrest-release-2.15/src && ./configure)
sudo make -s -C /root/pgbackrest-release-2.15/src
sudo scp build:/root/pgbackrest-release-2.15/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.15 - 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/10/bin/initdb \
-D /var/lib/postgresql/10/demo -k -A peersudo pg_createcluster 10 demo
Configuring already existing cluster (configuration: /etc/postgresql/10/demo, data: /var/lib/postgresql/10/demo, owner: 106:110) Ver Cluster Port Status Owner Data directory Log file 10 demo 5432 down postgres /var/lib/postgresql/10/demo /var/log/postgresql/postgresql-10-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.15 - '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 10 demo restart
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stanza-create
P00 INFO: stanza-create command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/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.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/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/10-1/0000000100000000/000000010000000000000001-b32bd89933278fbcbdc4b6204ee15a31c1197ca6.gz'
P00 INFO: check command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo \
--log-level-console=info backupP00 INFO: backup command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/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 non-exclusive pg_start_backup() with label "pgBackRest backup started at 2019-06-25 02:01:57": backup begins after the next regular checkpoint completes
P00 INFO: backup start archive = 000000010000000000000002, lsn = 0/2000028
[filtered 941 lines of output]
P01 INFO: backup file /var/lib/postgresql/10/demo/base/1/12820 (0B, 100%)
P01 INFO: backup file /var/lib/postgresql/10/demo/base/1/12815 (0B, 100%)P00 INFO: full backup size = 22.4MB
P00 INFO: execute non-exclusive pg_stop_backup() and wait for all WAL segments to archive
P00 INFO: backup stop archive = 000000010000000000000002, lsn = 0/2000130
[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/10/demo/global/pg_control (8KB, 99%) checksum 52cd17e0aeeb68a0b978d3e068fe91d31d75b574 P01 INFO: backup file /var/lib/postgresql/10/demo/pg_logical/replorigin_checkpoint (8B, 100%) checksum 347fc8f2df71bd4436e38bd1516ccd7ea0d46532
P00 INFO: diff backup size = 8KB
P00 INFO: execute non-exclusive pg_stop_backup() and wait for all WAL segments to archive
P00 INFO: backup stop archive = 000000010000000000000003, lsn = 0/30000F8
[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 (10-1): 000000010000000000000002/000000010000000000000003
full backup: 20190625-020157F
timestamp start/stop: 2019-06-25 02:01:57 / 2019-06-25 02:02:10
wal start/stop: 000000010000000000000002 / 000000010000000000000002
database size: 22.4MB, backup size: 22.4MB
repository size: 2.7MB, repository backup size: 2.7MB
diff backup: 20190625-020157F_20190625-020211D
timestamp start/stop: 2019-06-25 02:02:11 / 2019-06-25 02:02:13
wal start/stop: 000000010000000000000003 / 000000010000000000000003
database size: 22.4MB, backup size: 8.2KB
repository size: 2.7MB, repository backup size: 517B
backup reference list: 20190625-020157Fsudo pg_ctlcluster 10 demo stop
sudo -u postgres rm /var/lib/postgresql/10/demo/global/pg_control
sudo pg_ctlcluster 10 demo start
Error: /usr/lib/postgresql/10/bin/pg_ctl /usr/lib/postgresql/10/bin/pg_ctl start -D /var/lib/postgresql/10/demo -l /var/log/postgresql/postgresql-10-demo.log -s -o -c config_file="/etc/postgresql/10/demo/postgresql.conf" exited with status 1:
postgres: could not find the database system
Expected to find it in the directory "/var/lib/postgresql/10/demo", but could not open file "/var/lib/postgresql/10/demo/global/pg_control": No such file or directory Examine the log output.
sudo -u postgres find /var/lib/postgresql/10/demo -mindepth 1 -delete
sudo -u postgres pgbackrest --stanza=demo restore
sudo pg_ctlcluster 10 demo start
sudo -u postgres pgbackrest --stanza=demo --type=incr \
--log-level-console=info backupP00 INFO: backup command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/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 = 20190625-020157F_20190625-020211D, version = 2.15
P00 INFO: execute non-exclusive pg_start_backup() with label "pgBackRest backup started at 2019-06-25 02:02:31": 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 8 lines of output]sudo -u postgres pgbackrest --stanza=demo --type=incr \
--log-level-console=info backupP00 INFO: backup command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/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 = 20190625-020157F_20190625-020231I, version = 2.15
P00 INFO: execute non-exclusive pg_start_backup() with label "pgBackRest backup started at 2019-06-25 02:02:36": backup begins after the requested immediate checkpoint completes
P00 INFO: backup start archive = 000000020000000000000006, lsn = 0/6000028
P01 INFO: backup file /var/lib/postgresql/10/demo/global/pg_control (8KB, 99%) checksum d849b75b7c41237a1e91c7e2ae2a4ae7c5d1fe60
[filtered 8 lines of output]sudo -u postgres pgbackrest --output=json info
[
{
"archive" : [
{
"database" : {
"id" : 1
},
"id" : "10-1",
"max" : "000000020000000000000006",
"min" : "000000010000000000000002"
}
],
"backup" : [
{
"archive" : {
"start" : "000000010000000000000002",
"stop" : "000000010000000000000002"
},
"backrest" : {
"format" : 5,
"version" : "2.15"
},
"database" : {
"id" : 1
},
"info" : {
"delta" : 23521617,
"repository" : {
"delta" : 2790501,
"size" : 2790501
},
"size" : 23521617
},
"label" : "20190625-020157F",
"prior" : null,
"reference" : null,
"timestamp" : {
"start" : 1561428117,
"stop" : 1561428130
},
"type" : "full"
},
{
"archive" : {
"start" : "000000010000000000000003",
"stop" : "000000010000000000000003"
},
"backrest" : {
"format" : 5,
"version" : "2.15"
},
"database" : {
"id" : 1
},
"info" : {
"delta" : 8429,
"repository" : {
"delta" : 517,
"size" : 2790501
},
"size" : 23521617
},
"label" : "20190625-020157F_20190625-020211D",
"prior" : "20190625-020157F",
"reference" : [
"20190625-020157F"
],
"timestamp" : {
"start" : 1561428131,
"stop" : 1561428133
},
"type" : "diff"
},
{
"archive" : {
"start" : "000000020000000000000005",
"stop" : "000000020000000000000005"
},
"backrest" : {
"format" : 5,
"version" : "2.15"
},
"database" : {
"id" : 1
},
"info" : {
"delta" : 8421,
"repository" : {
"delta" : 469,
"size" : 2790501
},
"size" : 23521617
},
"label" : "20190625-020157F_20190625-020231I",
"prior" : "20190625-020157F_20190625-020211D",
"reference" : [
"20190625-020157F",
"20190625-020157F_20190625-020211D"
],
"timestamp" : {
"start" : 1561428151,
"stop" : 1561428154
},
"type" : "incr"
},
{
"archive" : {
"start" : "000000020000000000000006",
"stop" : "000000020000000000000006"
},
"backrest" : {
"format" : 5,
"version" : "2.15"
},
"database" : {
"id" : 1
},
"info" : {
"delta" : 8429,
"repository" : {
"delta" : 517,
"size" : 2790501
},
"size" : 23521617
},
"label" : "20190625-020157F_20190625-020236I",
"prior" : "20190625-020157F_20190625-020231I",
"reference" : [
"20190625-020157F"
],
"timestamp" : {
"start" : 1561428156,
"stop" : 1561428158
},
"type" : "incr"
}
],
"cipher" : "aes-256-cbc",
"db" : [
{
"id" : 1,
"system-id" : 6706282598478229752,
"version" : "10"
}
],
"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 PostgreSQL
--
-- Use copy to export data from the pgBackRest info command into the jsonb
-- type so it can be queried directly by PostgreSQL.
-- 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.sqlsudo -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.sqlname | last_successful_backup | last_archived_wal --------+------------------------+-------------------------- "demo" | 2019-06-25 02:02:38+00 | 000000020000000000000006 (1 row)
sudo apt-get install jq
sudo -u postgres pgbackrest --output=json --stanza=demo info | \
jq '.[0] | .backup[-1] | .timestamp.stop'1561428158
sudo -u postgres pgbackrest --output=json --stanza=demo info | \
jq '.[0] | .archive[-1] | .max'"000000020000000000000006"
sudo -u postgres pgbackrest --stanza=demo --type=full \
--log-level-console=detail backup[filtered 951 lines of output] P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
P00 DETAIL: archive retention on backup 20190625-020157F, archiveId = 10-1, start = 000000010000000000000002
P00 DETAIL: no archive to remove, archiveId = 10-1 P00 INFO: expire command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo --type=full \
--log-level-console=info backup[filtered 950 lines of output] P00 INFO: backup command end: completed successfully P00 INFO: expire command begin
P00 INFO: expire full backup set: 20190625-020157F, 20190625-020157F_20190625-020211D, 20190625-020157F_20190625-020231I, 20190625-020157F_20190625-020236I
P00 INFO: remove expired backup 20190625-020157F_20190625-020236I
P00 INFO: remove expired backup 20190625-020157F_20190625-020231I
[filtered 2 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: 20190625-020259F_20190625-020314D, 20190625-020259F_20190625-020317I
P00 INFO: remove expired backup 20190625-020259F_20190625-020317I P00 INFO: remove expired backup 20190625-020259F_20190625-020314D
sudo -u postgres pgbackrest --stanza=demo --type=diff \
--log-level-console=info backup[filtered 8 lines of output] P00 INFO: execute non-exclusive pg_stop_backup() and wait for all WAL segments to archive P00 INFO: backup stop archive = 000000020000000000000010, lsn = 0/100000F8
P00 INFO: new backup label = 20190625-020259F_20190625-020326D
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 expireP00 INFO: expire command begin 2.15: --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 20190625-020246F, archiveId = 10-1, start = 000000020000000000000008, stop = 000000020000000000000008 P00 DETAIL: archive retention on backup 20190625-020259F, archiveId = 10-1, start = 000000020000000000000009, stop = 000000020000000000000009
P00 DETAIL: archive retention on backup 20190625-020259F_20190625-020321D, archiveId = 10-1, start = 00000002000000000000000C, stop = 00000002000000000000000C
P00 DETAIL: archive retention on backup 20190625-020259F_20190625-020326D, archiveId = 10-1, start = 000000020000000000000010
P00 DETAIL: remove archive: archiveId = 10-1, start = 00000002000000000000000A, stop = 00000002000000000000000B P00 DETAIL: remove archive: archiveId = 10-1, start = 00000002000000000000000D, stop = 00000002000000000000000F
P00 INFO: expire command end: completed successfully
sudo pg_ctlcluster 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \
--log-level-console=detail restore[filtered 761 lines of output] P01 DETAIL: restore file /var/lib/postgresql/10/demo/base/12977/PG_VERSION - exists and matches backup (3B, 99%) checksum 4143d3a341877154d6e95211464e1df1015b74bd P01 DETAIL: restore file /var/lib/postgresql/10/demo/base/1/PG_VERSION - exists and matches backup (3B, 99%) checksum 4143d3a341877154d6e95211464e1df1015b74bd
P01 DETAIL: restore file /var/lib/postgresql/10/demo/PG_VERSION - exists and matches backup (3B, 100%) checksum 4143d3a341877154d6e95211464e1df1015b74bd
P01 DETAIL: restore file /var/lib/postgresql/10/demo/global/6100_vm - exists and is zero size (0B, 100%)
P01 DETAIL: restore file /var/lib/postgresql/10/demo/global/6100 - exists and is zero size (0B, 100%)
[filtered 203 lines of output]
P01 DETAIL: restore file /var/lib/postgresql/10/demo/base/1/12815 - exists and is zero size (0B, 100%)
P00 INFO: write /var/lib/postgresql/10/demo/recovery.confP00 INFO: restore global/pg_control (performed last to ensure aborted restores cannot be started)
P00 INFO: restore command end: completed successfully
sudo pg_ctlcluster 10 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);" test1INSERT 0 1
sudo -u postgres psql -c "create table test2_table (id int); \
insert into test2_table (id) values (2);" test2INSERT 0 1
sudo -u postgres du -sh /var/lib/postgresql/10/demo/base/24576
7.5M /var/lib/postgresql/10/demo/base/24576
sudo pg_ctlcluster 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \
--db-include=test2 restoresudo pg_ctlcluster 10 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/10/demo/base/24576
176K /var/lib/postgresql/10/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
12977 | template0
12978 | postgres24577 | 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-06-25 02:04:10.358542+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 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \
--type=time "--target=2019-06-25 02:04:10.358542+00" \
--target-action=promote restoresudo -u postgres cat /var/lib/postgresql/10/demo/recovery.conf
restore_command = 'pgbackrest --stanza=demo archive-get %f "%p"'
recovery_target_time = '2019-06-25 02:04:10.358542+00'
recovery_target_action = 'promote'
sudo pg_ctlcluster 10 demo start
sudo -u postgres psql -c "select * from important_table"
message ----------------
Important Data
(1 row)
sudo -u postgres cat /var/log/postgresql/postgresql-10-demo.log
[filtered 2 lines of output] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" LOG: database system was interrupted; last known up at 2019-06-25 02:04:03 UTC
LOG: starting point-in-time recovery to 2019-06-25 02:04:10.358542+00
LOG: restored log file "00000004.history" from archive
LOG: restored log file "000000040000000000000015" from archive
[filtered 2 lines of output]
LOG: database system is ready to accept read only connections
LOG: restored log file "000000040000000000000016" from archiveLOG: recovery stopping before commit of transaction 564, time 2019-06-25 02:04:10.872712+00
LOG: redo done at 0/16021378
LOG: last completed transaction was at log time 2019-06-25 02:04:09.907842+00
LOG: selected new timeline ID: 5
LOG: archive recovery complete
[filtered 3 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 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \
--type=time "--target=2019-06-25 02:04:10.358542+00" --target-action=promote restoresudo pg_ctlcluster 10 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-10-demo.log
[filtered 2 lines of output] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" LOG: database system was interrupted; last known up at 2019-06-25 02:04:25 UTC
LOG: starting point-in-time recovery to 2019-06-25 02:04:10.358542+00
LOG: restored log file "00000005.history" from archive LOG: restored log file "000000050000000000000017" from archive LOG: redo starts at 0/17000028
LOG: consistent recovery state reached at 0/170000F8
LOG: database system is ready to accept read only connections
LOG: redo done at 0/170000F8
[filtered 8 lines of output]sudo -u postgres pgbackrest info
stanza: demo
status: ok
cipher: aes-256-cbc
db (current)
wal archive min/max (10-1): 000000020000000000000008/000000050000000000000017
full backup: 20190625-020246F
timestamp start/stop: 2019-06-25 02:02:46 / 2019-06-25 02:02:58
wal start/stop: 000000020000000000000008 / 000000020000000000000008
database size: 22.4MB, backup size: 22.4MB
repository size: 2.7MB, repository backup size: 2.7MB
full backup: 20190625-020259F
timestamp start/stop: 2019-06-25 02:02:59 / 2019-06-25 02:03:12
wal start/stop: 000000020000000000000009 / 000000020000000000000009
database size: 22.4MB, backup size: 22.4MB
repository size: 2.7MB, repository backup size: 2.7MB
diff backup: 20190625-020259F_20190625-020326D
timestamp start/stop: 2019-06-25 02:03:26 / 2019-06-25 02:03:28
wal start/stop: 000000020000000000000010 / 000000020000000000000010
database size: 22.4MB, backup size: 96.2KB
repository size: 2.7MB, repository backup size: 11.9KB
backup reference list: 20190625-020259F
incr backup: 20190625-020259F_20190625-020339I
timestamp start/stop: 2019-06-25 02:03:39 / 2019-06-25 02:03:48
wal start/stop: 000000030000000000000012 / 000000030000000000000012
database size: 37MB, backup size: 15MB
repository size: 4.4MB, repository backup size: 1.8MB
backup reference list: 20190625-020259F, 20190625-020259F_20190625-020326D
diff backup: 20190625-020259F_20190625-020403D
timestamp start/stop: 2019-06-25 02:04:03 / 2019-06-25 02:04:09
wal start/stop: 000000040000000000000015 / 000000040000000000000015
database size: 29.7MB, backup size: 7.8MB
repository size: 3.5MB, repository backup size: 948.7KB
backup reference list: 20190625-020259F
incr backup: 20190625-020259F_20190625-020424I
timestamp start/stop: 2019-06-25 02:04:24 / 2019-06-25 02:04:27
wal start/stop: 000000050000000000000017 / 000000050000000000000017
database size: 29.7MB, backup size: 2MB
repository size: 3.5MB, repository backup size: 218.4KBbackup reference list: 20190625-020259F, 20190625-020259F_20190625-020403D
sudo pg_ctlcluster 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta \
--type=time "--target=2019-06-25 02:04:10.358542+00" \
--set=20190625-020259F_20190625-020403D --target-action=promote restoresudo pg_ctlcluster 10 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-10-demo.log
[filtered 2 lines of output] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" LOG: database system was interrupted; last known up at 2019-06-25 02:04:03 UTC
LOG: starting point-in-time recovery to 2019-06-25 02:04:10.358542+00
LOG: restored log file "00000004.history" from archive
LOG: restored log file "000000040000000000000015" from archive
[filtered 2 lines of output]
LOG: database system is ready to accept read only connections
LOG: restored log file "000000040000000000000016" from archiveLOG: recovery stopping before commit of transaction 564, time 2019-06-25 02:04:10.872712+00
LOG: redo done at 0/16021378
LOG: last completed transaction was at log time 2019-06-25 02:04:09.907842+00
LOG: restored log file "00000005.history" from archive
LOG: restored log file "00000006.history" from archive
[filtered 5 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.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.us-east-1.amazonaws.com --repo1-s3-key= --repo1-s3-key-secret= --repo1-s3-region=us-east-1 --repo1-type=s3 --stanza=demo
P00 INFO: stanza-create command end: completed successfully
sudo -u postgres pgbackrest --stanza=demo \
--log-level-console=info backupP00 INFO: backup command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=4 --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/demo-repo --repo1-retention-diff=2 --repo1-retention-full=2 --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.us-east-1.amazonaws.com --repo1-s3-key= --repo1-s3-key-secret= --repo1-s3-region=us-east-1 --repo1-type=s3 --stanza=demo --start-fast
P00 WARN: no prior backup exists, incr backup has been changed to full
P00 INFO: execute non-exclusive pg_start_backup() with label "pgBackRest backup started at 2019-06-25 02:05:04": backup begins after the requested immediate checkpoint completes
P00 INFO: backup start archive = 000000070000000000000017, lsn = 0/17000028
[filtered 1238 lines of output]
P03 INFO: backup file /var/lib/postgresql/10/demo/base/1/12820 (0B, 100%)
P02 INFO: backup file /var/lib/postgresql/10/demo/base/1/12815 (0B, 100%)P00 INFO: full backup size = 29.7MB
P00 INFO: execute non-exclusive pg_stop_backup() and wait for all WAL segments to archive
P00 INFO: backup stop archive = 000000070000000000000017, lsn = 0/17000130
[filtered 5 lines of output]sudo pg_ctlcluster 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info stop
P00 INFO: stop command begin 2.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.us-east-1.amazonaws.com --repo1-s3-key= --repo1-s3-key-secret= --repo1-s3-region=us-east-1 --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.15: --log-level-console=info --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --repo1-cipher-pass=--repo1-cipher-type=aes-256-cbc --repo1-path=/demo-repo --repo1-s3-bucket=demo-bucket --repo1-s3-endpoint=s3.us-east-1.amazonaws.com --repo1-s3-key= --repo1-s3-key-secret= --repo1-s3-region=us-east-1 --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.15/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_keyssudo -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 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo pg_ctlcluster 10 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 (10-1): 00000008000000000000001D/00000008000000000000001F
full backup: 20190625-020629Ftimestamp start/stop: 2019-06-25 02:06:29 / 2019-06-25 02:06:46
wal start/stop: 00000008000000000000001D / 00000008000000000000001D
database size: 29.8MB, backup size: 29.8MB
repository size: 3.5MB, repository backup size: 3.5MB
full backup: 20190625-020648Ftimestamp start/stop: 2019-06-25 02:06:48 / 2019-06-25 02:06:56
wal start/stop: 00000008000000000000001F / 00000008000000000000001F
database size: 29.8MB, backup size: 29.8MB
repository size: 3.5MB, repository backup size: 3.5MBsudo -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.15/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_keyssudo -u pgbackrest ssh postgres@pg-standby
sudo -u postgres ssh pgbackrest@repository
sudo pg_createcluster 10 demo
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo -u postgres cat /var/lib/postgresql/10/demo/recovery.conf
standby_mode = 'on' restore_command = 'pgbackrest --stanza=demo archive-get %f "%p"'
sudo pg_ctlcluster 10 demo start
sudo -u postgres cat /var/log/postgresql/postgresql-10-demo.log
[filtered 3 lines of output] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" LOG: database system was interrupted; last known up at 2019-06-25 02:06:49 UTC
LOG: entering standby mode
LOG: restored log file "00000008.history" from archive LOG: restored log file "00000008000000000000001F" from archive LOG: redo starts at 0/1F000028 LOG: consistent recovery state reached at 0/1F0000F8
LOG: database system is ready to accept read only connections
LOG: incomplete startup packet
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_wal()";
pg_switch_wal | current_timestamp ---------------+------------------------------- 0/2002B4F0 | 2019-06-25 02:07:43.160346+00 (1 row)
sudo -u postgres psql -c " \
select *, current_timestamp from replicated_table"message | current_timestamp ----------------+-------------------------------
Important Data | 2019-06-25 02:07:47.687919+00
(1 row)
sudo -u postgres pgbackrest --stanza=demo --log-level-console=info check
P00 INFO: check command begin 2.15: --log-level-console=info --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --repo1-host=repository --stanza=demo
P00 INFO: switch wal 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/10/demo/pg_hba.conf'sudo pg_ctlcluster 10 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 10 demo stop
sudo -u postgres pgbackrest --stanza=demo --delta restore
sudo -u postgres cat /var/lib/postgresql/10/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 10 demo start
sudo -u postgres cat /var/log/postgresql/postgresql-10-demo.log
[filtered 11 lines of output] LOG: restored log file "000000080000000000000020" from archive LOG: incomplete startup packet
LOG: started streaming WAL from primary at 0/21000000 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 | current_timestamp ----------------+-------------------------------
Important Data | 2019-06-25 02:08:03.728204+00
(1 row)
sudo -u postgres psql -c " \
select *, current_timestamp from stream_table"message | current_timestamp ----------------+-------------------------------
Important Data | 2019-06-25 02:08:04.471849+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 10 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_wal(); \
select pg_create_restore_point('test async push'); select pg_switch_wal(); \
select pg_create_restore_point('test async push'); select pg_switch_wal(); \
select pg_create_restore_point('test async push'); select pg_switch_wal(); \
select pg_create_restore_point('test async push'); select pg_switch_wal();"sudo -u postgres pgbackrest --stanza=demo --log-level-console=info check
P00 INFO: check command begin 2.15: --log-level-console=info --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --repo1-host=repository --stanza=demo
P00 INFO: WAL segment 000000080000000000000026 successfully stored in the archive at '/var/lib/pgbackrest/archive/demo/10-1/0000000800000000/000000080000000000000026-5bfb8590e2f586e88e6021db37f8fd7d17c2b686.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-async command begin 2.15: [/var/lib/postgresql/10/demo/pg_wal] --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: push 1 WAL file(s) to archive: 000000080000000000000021 P01 DETAIL: pushed WAL file '000000080000000000000021' to the archive
P00 INFO: archive-push-async command end: completed successfully -------------------PROCESS START------------------- P00 INFO: archive-push-async command begin 2.15: [/var/lib/postgresql/10/demo/pg_wal] --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: push 4 WAL file(s) to archive: 000000080000000000000022...000000080000000000000025 P02 DETAIL: pushed WAL file '000000080000000000000023' to the archive P01 DETAIL: pushed WAL file '000000080000000000000022' to the archive P02 DETAIL: pushed WAL file '000000080000000000000024' to the archive P01 DETAIL: pushed WAL file '000000080000000000000025' to the archive
P00 INFO: archive-push-async command end: completed successfully -------------------PROCESS START------------------- P00 INFO: archive-push-async command begin 2.15: [/var/lib/postgresql/10/demo/pg_wal] --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: push 1 WAL file(s) to archive: 000000080000000000000026 P01 DETAIL: pushed WAL file '000000080000000000000026' to the archive
P00 INFO: archive-push-async command end: completed successfully
sudo -u postgres cat /var/log/pgbackrest/demo-archive-get-async.log
-------------------PROCESS START------------------- P00 INFO: archive-get-async command begin 2.15: [00000008000000000000001F, 000000080000000000000020, 000000080000000000000021, 000000080000000000000022, 000000080000000000000023, 000000080000000000000024, 000000080000000000000025, 000000080000000000000026] --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo P00 INFO: get 8 WAL file(s) from archive: 00000008000000000000001F...000000080000000000000026
P02 DETAIL: found 000000080000000000000020 in the archive P01 DETAIL: found 00000008000000000000001F in the archive
P01 DETAIL: unable to find 000000080000000000000022 in the archive
P02 DETAIL: unable to find 000000080000000000000021 in the archive
[filtered 20 lines of output]
P00 INFO: archive-get-async command begin 2.15: [000000080000000000000021, 000000080000000000000022, 000000080000000000000023, 000000080000000000000024, 000000080000000000000025, 000000080000000000000026, 000000080000000000000027, 000000080000000000000028] --log-level-console=off --log-level-file=detail --log-level-stderr=off --no-log-timestamp --pg1-path=/var/lib/postgresql/10/demo --process-max=2 --repo1-host=repository --spool-path=/var/spool/pgbackrest --stanza=demo
P00 INFO: get 8 WAL file(s) from archive: 000000080000000000000021...000000080000000000000028P01 DETAIL: found 000000080000000000000021 in the archive P02 DETAIL: found 000000080000000000000022 in the archive P01 DETAIL: found 000000080000000000000023 in the archive P02 DETAIL: found 000000080000000000000024 in the archive
P02 DETAIL: unable to find 000000080000000000000026 in the archive P02 DETAIL: unable to find 000000080000000000000027 in the archive P02 DETAIL: unable to find 000000080000000000000028 in the archive
P01 DETAIL: found 000000080000000000000025 in the archive
P00 INFO: archive-get-async command end: completed successfully
[filtered 8 lines of output]
P02 DETAIL: unable to find 00000008000000000000002C in the archive
P02 DETAIL: unable to find 00000008000000000000002D in the archiveP01 DETAIL: found 000000080000000000000026 in the archive
P00 INFO: archive-get-async command end: completed successfully
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 non-exclusive pg_start_backup() with label "pgBackRest backup started at 2019-06-25 02:08:25": backup begins after the requested immediate checkpoint completes P00 INFO: backup start archive = 000000080000000000000028, lsn = 0/28000028
P00 INFO: wait for replay on the standby to reach 0/28000028 P00 INFO: replay on the standby reached 0/28000108, checkpoint 0/28000060 P01 INFO: backup file pg-primary:/var/lib/postgresql/10/demo/global/pg_control (8KB, 0%) checksum fcf65db89e0d0bc985776c8c60a62af01c4121ec P01 INFO: backup file pg-primary:/var/lib/postgresql/10/demo/pg_logical/replorigin_checkpoint (8B, 0%) checksum 347fc8f2df71bd4436e38bd1516ccd7ea0d46532
P02 INFO: backup file pg-standby:/var/lib/postgresql/10/demo/base/12978/2608 (440KB, 19%) checksum 6b75dba8ba9cb12bea08c18fc2c833d3d857a4d9
P03 INFO: backup file pg-standby:/var/lib/postgresql/10/demo/base/12978/1249 (392KB, 36%) checksum 0180bb0af20ddaf75c00578eb23902603150ead1
[filtered 39 lines of output]sudo pg_ctlcluster 10 demo stop
sudo pg_ctlcluster 10 demo stop
sudo -u postgres /usr/lib/postgresql/11/bin/initdb \
-D /var/lib/postgresql/11/demo -k -A peersudo pg_createcluster 11 demo
sudo -u postgres sh -c 'cd /var/lib/postgresql && \
/usr/lib/postgresql/11/bin/pg_upgrade \
--old-bindir=/usr/lib/postgresql/10/bin \
--new-bindir=/usr/lib/postgresql/11/bin \
--old-datadir=/var/lib/postgresql/10/demo \
--new-datadir=/var/lib/postgresql/11/demo \
--old-options=" -c config_file=/etc/postgresql/10/demo/postgresql.conf" \
--new-options=" -c config_file=/etc/postgresql/11/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/10/demo/pg_hba.conf \
/etc/postgresql/11/demo/pg_hba.confsudo -u pgbackrest pgbackrest --stanza=demo --no-online \
--log-level-console=info stanza-upgradeP00 INFO: stanza-upgrade command begin 2.15: --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/11/demo --pg2-path=/var/lib/postgresql/11/demo --repo1-path=/var/lib/pgbackrest --stanza=demo
P00 INFO: stanza-upgrade command end: completed successfully
sudo pg_ctlcluster 11 demo start
sudo -u postgres pg_lsclusters
Ver Cluster Port Status Owner Data directory Log file 10 demo 5432 down postgres /var/lib/postgresql/10/demo /var/log/postgresql/postgresql-10-demo.log 11 demo 5432 online postgres /var/lib/postgresql/11/demo /var/log/postgresql/postgresql-11-demo.log
sudo -u postgres pgbackrest --stanza=demo check
sudo pg_dropcluster 10 demo
sudo pg_dropcluster 10 demo
sudo pg_createcluster 11 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 11 demo start
sudo -u postgres pgbackrest --stanza=demo check