0

Followed this guide to do the PostgreSQL replication:

https://www.digitalocean.com/community/tutorials/how-to-set-up-master-slave-replication-on-postgresql-on-an-ubuntu-12-04-vps

I didn't do this:

psql -c "select pg_start_backup('initial_backup');"
rsync -cva --inplace --exclude=*pg_xlog* /var/lib/postgresql/9.1/main/ slave_IP_address:/var/lib/postgresql/9.1/main/
psql -c "select pg_stop_backup();"

After I configed both master and slave nodes, test to create a table on master, didn't find new data been synced to slave.

From this guide I saw need to add a archive_command config in the recovery.conf file:

https://www.server-world.info/en/note?os=CentOS_7&p=postgresql&f=3

archive_command = 'cp %p /var/lib/pgsql/archive/%f'

But PostgreSQL 9.6 maybe not support that feature. So how can it been synced automatically?


Addition

It's helpful:

https://dalibo.github.io/PAF/Quick_Start-CentOS-7.html

asked Jul 19, 2017 at 12:08

1 Answer 1

2

The archive_command setting doesn't fit the recovery.conf but the postgresql.conf file.

The documentation you're following is deprecated.

Please switch to the official documentation.

Here are the steps you need to perform:

  • Primary node settings (postgresql.conf, pg_hba.conf)
  • Primary node backup (pg_basebackup, pgbarman, pgbackrest... Whatever)
  • Restoring on secondary node (manually, pgbarman, pgbackrest... Whatever)
  • Secondary node settings (recovery.conf, postgresql.conf, eventually pg_hba.conf)

The part you didn't do is simply the initial backup/restore. You can't do replication without it.

joanolo
13.7k8 gold badges39 silver badges67 bronze badges
answered Jul 19, 2017 at 14:20
6
  • Thank you. How to send the database data to slave on PostgreSQL 9.6? Maybe use archive path, but which is the archive path of 9.6? The sample is rsync -cva --inplace --exclude=*pg_xlog* /var/lib/postgresql/9.1/main/ slave_IP_address:/var/lib/postgresql/9.1/main/, but there is no path like /var/lib/pgsql/9.6/main with 9.6 version. Commented Jul 20, 2017 at 3:10
  • Maybe run this: pg_basebackup -h master-ip -D ~postgres/9.6/data/ -X stream -P, but run it on slave, then got this error: pg_basebackup: directory "/var/lib/pgsql/9.6/data" exists but is not empty. Commented Jul 20, 2017 at 3:32
  • I run rsync -cva --inplace --exclude=*pg_xlog* ~postgres/9.6/data/ slave_ip:~postgres/9.6/data/ on master, then change to right info(IP) under data folder on slave, it works! Commented Jul 20, 2017 at 3:47
  • If you didn't use psql -c "select pg_start_backup('initial_backup');" before your rsync and psql -c "select pg_stop_backup();" after, you're just lucky it works... Commented Jul 20, 2017 at 7:07
  • I used that two psql commands. Commented Jul 20, 2017 at 7:50

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.