9.4 Replication with RepMgr and PgBouncer in Postgresql

repmgr 3.0:-
                   repmgr is an open-source tool suite to  monitor replication, and perform administrative tasks such as failover or manual switchover operations.
PgBouncer:-
                  PgBouncer is connection pooler for PostgreSQL databases and acts as gateway for clients to connect to the databases.pgBouncer allows for backend database configuration changes by just editing its configuration file and reloading the process.
Related image
Setup:-
dbhost1: first database host running on 192.168.0.100
dbhost2: second database host running on 192.168.0.101
pgbouncer-host: host running pgbouncer on 192.168.0.102
Instructions:-
1.Install dependencies.
2.Configure ssh access between db nodes.
3.Configure databases.
4.Configure PostgreSQL replication.
5.Configure replication manager.
6.Clone slave.
7.Configure pgBouncer.
8.Failover.
1) Install Dependences (dbhost1, dbhost2, pgbouncer-host)
The default ubuntu 14.04 installation does not include PostgreSQL 9.4 so we will need to add the repository:
Create the file /etc/apt/sources.list.d/pgdg.list, and add a line for the repository
Import the repository signing key, and update the package lists
wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add –  
sudo apt-get update  
Install the dependencies for database hosts (dbhost1,dbhost2)
sudo apt-get install postgresql-9.4  
sudo apt-get install postgresql-9.4-repmgr  
sudo apt-get install postgresql-client-9.4  
Install the dependencies for pgBouncer host (pgbouncer-host)
sudo apt-get install postgresql-client-9.4  
sudo apt-get install pgbouncer  
2) Configure password-less ssh between dbhosts (dbhost1,dbhost2)
by default postgreSQL creates a postgres local linux user which is used to do all database management operations. To create slaves or recreate a master after failure repmgr requires that the user running the commands have password-less ssh access to the source host. Since the postgres user is the user which has permissions on the postrgres directories, we will configure that user for ssh.
switch to the user
$ sudo su postgres
create ssh key pair
$ ssh-keygen
copy the publich key id_rsa.pub contents and add it to the authorized_keys file in the other host’s postgres user ssh directory. For more details see https://github.com/2ndQuadrant/repmgr/blob/master/SSH-RSYNC.md
test that you can ssh between servers before going to the next step.
3) Configure Databases and users (dbhost1)
We will need two databases one will be used by repmgr and the other will be our application database. All commands are to be executed using the postgres user.
for repmgr database
$ createuser -s repmgr
$ createdb repmgr -O repmgr
for our application database
$ createuser test_user
$ createdb test_db -O test_user
since this user will be used by the applications (clients) we will set a password for it. Run the following command from inside a psql shell with the default postgres user.
postgres=# ALTER USER test_user WITH PASSWORD ”;
4) Configure PostgreSQL replication (dbhost1)
We will now configure the master db host (dbhost1) for replication. This is acheived by editing the postgresql.conf file and updating the follwing items
listen_addresses=’*’  
wal_level = ‘hot_standby’  
archive_mode = on  
archive_command = ‘cd .’  
max_wal_senders = 10  
max_replication_slots = 1  
hot_standby = on  
shared_preload_libraries = ‘repmgr_funcs’  
We also need to configure the authentication configuration (pg_hba.conf) to allow repmgr to access replication database and also allow password based access for our application database (test_db). We will add the following lines:
host    repmgr          repmgr     192.168.0.0/0     trust  
host    replication     repmgr     192.168.0.0/0     trust  
host    test_db         test_user  192.168.0.0/0     md5  
restart the postgres service after the changes are done
$ sudo service postgresql restart
5) Configure Replication Manager (dbhost1,dbhost2)
We will need to create a repmgr.conf on each database host. The file could be stored anywhere but we will use /etc/repmgr/repmgr.conf.
The file contents for the dbhost1 should be
cluster=test  
node=1  
node_name=node1  
use_replication_slots=1  
conninfo=’host=dbhost1 user=repmgr dbname=repmgr’  
pg_bindir=/usr/lib/postgresql/9.4/bin  
We are now ready to join our master to the replication topology. Using the postgres user run the command
$ repmgr -f /etc/repmgr/repmgr.conf master register
and similarly for dbhost2 we need to create the file /etc/repmgr/repmgr.conf with the contents
cluster=test  
node=2  
node_name=node2  
use_replication_slots=1  
conninfo=’host=dbhost2 user=repmgr dbname=repmgr’  
pg_bindir=/usr/lib/postgresql/9.4/bin  
6) Clone Slave (dbhost2)
ssh into our slave server dbhost
stop the postgresql service
$ sudo service postgresql stop
run the following command using the postgres user to clone the master
$ repmgr -f /etc/repmgr/repmgr.conf –force –rsync-only -h dbhost1 -d repmgr -U repmgr –verbose
standby clone
start the postgresql server
$ sudo service postgresql start
register the slave as a standby
$ repmgr -f /etc/repmgr/repmgr.conf –force standby register
if all the previous steps ran successfully we should be able to see the state of our replication cluster using the command
$ repmgr -f /etc/repmgr/repmgr.conf cluster show
and it should return an output like this
 Role      | Connection String  
* master  | host=dbhost1 user=repmgr dbname=repmgr
 standby | host=dbhost2 user=repmgr dbname=repmgr
7) Configure pgBouncer (pgbouncer-host)
All pgBouncer needs is a configuration file pgbouncer.ini which can be stored anywhere in the system. The contents of the file should be
[databases]
test_db = host=dbhost1 port=5432 dbname=test_db
[pgbouncer]
listen_port = 6543  
listen_addr = 127.0.0.1  
auth_type = md5  
auth_file = users.txt  
logfile = pgbouncer.log  
pidfile = pgbouncer.pid  
admin_users = test_user  
The configuration above instructs pgBouncer to listen for connections on port 6543 and relay connections to the database test_db to our current master dbhost1 on port 5432.
Because pgBouncer uses md5 based authentication with postgreSQL 8.0 style files we need to create a users.txt file which will have the user credentials for the database users. A sample of this file is below
“test_user” “somepassword”
To run pgBouncer we run the command
$ pgbouncer -d pgbouncer.ini -R
Congratulations!! you now have a running master-slave replicated postgreSQL setup.
8) Failover (dbhost2,pgbouncer-host)
In case of failover due to the master node failure. All that is needed to do is first make sure the master is truely down. Preferably, stopping the postgresql service if it is running. Then we just need to promote our slave to become the new master using the command:
$ repmgr -f /etc/repmgr/repmgr.conf standby promote
and then change the pgBouncer configuration to point to dbhost2 and re run the command
$ pgbouncer -d pgbouncer.ini -R
furher know about pgbouncer