Add installation section to README.md
[pgpool-online-recovery] / README.md
1 pgpool-online-recovery
2 ======================
3
4 This simple project aims to automate and make easy the online recovery process of a failed pgpool's backend node in master/slave mode.
5
6 Requirements
7 ============
8
9 There are two requirements to these scripts to work.
10
11 * The first one is [pgpool2](http://www.pgpool.net) (v3.1.3) available in [Debian Wheezy](http://packages.debian.org/stable/database/pgpool2). We assume that pgpool2 is installed, set up in master/slave mode with loadbalacing and manageable via PCP interface.
12 * The second one is obviously Postgres server (v9.1) also available in Wheezy packages repository.
13
14 There are several tutorials about setting up pgpool2 and postgres servers with [Streaming Replication](http://wiki.postgresql.org/wiki/Streaming_Replication) and this readme is far to be a howto for configuring both of them. You can check out [this tutorial](https://aricgardner.com/databases/postgresql/pgpool-ii-3-0-5-with-streaming-replication/) which describes really all the steps needed.
15
16 Installation and configuration
17 ==============================
18 What about the given scripts and config files ?
19
20 **pgpool.conf** : This is a sample config file for pgpool that activates master/slave mode, loadbalancing, backends health check, failover, ...
21
22 **postgresql.conf.master** : A config file for postgres master node.
23
24 **postgresql.conf.slave** : A config file for postgres slave node.
25
26 **recovery.conf** : A config file used by postgres slave for streaming replication process.
27
28 **failover.sh** : This script will be executed automatically when a pgpool's backend node (postgres node) fall down. It'll switch the standby node (slave) to master (new master).
29
30 **online-recovery.sh** : This is the bash script which you'll execute manually in order to :
31 * Reboot, sync and reattach slave node to pgpool if it fails.
32 * Setup new master and new slave, sync and reattach them to pgpool if current master fails.
33 This script will invoque remotely the script streaming-replication.sh (in the new slave node) to start the [online recovery process](http://www.postgresql.org/docs/8.1/static/backup-online.html) within the standby node.
34 PS : When a node (master or slave) fails, pgpool still running and DBs remain available. Otherwise, pgpool will detach this node for data consistancy reasons.
35
36 **streaming-replication.sh** : This script can be executed manually to synchronize a slave node with a given master node (master name/ip must be passed as argument to streaming-replication.sh). Otherwise, this same script is triggred be online-recovery.sh via ssh during failback process.
37
38 The installation steps are simple. You just need to copy provided bash scripts and config files as follow :
39
40 In pgpool node:
41 * Copy pgpool.conf to /etc/pgpool2/. This is an optional operation and in this case you have to edit the default pgpool.conf file in order to looks like the config file we provided.
42 * Copy failover.sh into /usr/local/bin/ and online-recovery.sh to your home or another directory that will be easily accessible.
43
44 In the master and slave postgres nodes:
45 * Copy streaming-replication.sh script into /var/lib/postgresql/ (postgres homedir).
46 * Copy postgresql.conf.master and postgresql.conf.slave files to /etc/postgresql/9.1/main/.
47 * Finally copy recovery.conf into /var/lib/postgresql/9.1/main/.
48
49 PS : All similar old files must be backed up to be able to rollback in case of risk (e.g: cp -p /etc/pgpool2/pgpool.conf /etc/pgpool2/pgpool.conf.backup).
50 Make sure that :
51 - All scripts are executable and owned by the proper users. 
52 - /var/lib/postgresql/9.1/archive directory is created (used to archive WAL files). This directory must be owned by postgres user !
53
54 Not enough ! It remains only the configuration steps and we'll be done :) To do, just follow these steps :
55
56 * First of all make sure you have created a postgres user in pgpool node with SSH access to all Postgres nodes. All cluster's nodes have to be able to ssh each other. You can put "config" file with "StrictHostKeyChecking=no" option under .ssh/ directory of postgres user. This is a best practice (essencially when automating a bunch of operations) that allows postgres to ssh remote machine for the first time without prompting and validating Yes/No authorization question.
57
58 * In Pgpool node set up pgpool.conf file for instance the parameters: ::
59
60         # Controls various backend behavior for instance master and slave(s).
61         backend_hostname0='master.foo.bar'
62         backend_port0 = 5432
63         backend_weight0 = 1
64         backend_data_directory0 = '/var/lib/postgres/9.1/main/'
65         backend_flag0 = 'ALLOW_TO_FAILOVER'
66         backend_hostname1='slave.foo.bar'
67         backend_port1 = 5432
68         backend_weight1 = 1
69         backend_data_directory1 = '/var/lib/postgres/9.1/main/'
70         backend_flag1 = 'ALLOW_TO_FAILOVER'
71         # Pool size
72         num_init_children = 32
73         max_pool = 4
74         # Master/Slave and load balancing (replication mode must be off)
75         load_balance_mode = on
76         master_slave_mode = on
77         master_slave_sub_mode = 'stream'
78         #Health check (must be set up to detecte postgres server status up/down)
79         health_check_period = 30
80         health_check_user = 'postgres'
81         health_check_password = 'postgrespass'
82         # Failover command
83         failover_command = '/path/to/failover.sh %d %H %P /tmp/trigger_file'
84         
85 * In failover.sh script, specify the proper ssh private key to postgres user to access new master  node via SSH. ::
86
87         ssh -i /var/lib/postgresql/.ssh/id_rsa postgres@$new_master "touch $trigger_file"
88
89 * Idem for online-recovery.sh you have juste to change if needed the postgres's private key, the rest of params is set automatically when the script runs. Magic hein ! :)
90
91 * Change the primary_conninfo access parameters (to master) in recovery.conf file in slave side : ::
92
93         primary_conninfo = 'host=master-or-slave.foo.bar port=5432 user=postgres password=nopass'
94
95 * Rename recovery.conf to recovery.done in master side.
96
97 * Setup postgres master node (after backup of postgresql.conf) : ::
98         
99         cp -p postgresql.conf.master postgresql.conf
100         /etc/init.d/postgresql restart
101
102 * Setup postgres slave node (after backup of postgresql.conf) : ::
103
104         cp -p postgresql.conf.slave postgresql.conf
105
106 * Start first slave synchronisation with master by executing streaming-replication.sh as postgres user : ::
107
108         su postgres
109         cd ~
110         ./streaming-replication.sh master.foo.bar
111
112 * Restart pgpool : ::
113
114         /etc/init.d/pgpool2 restart
115
116 At his stage slave node is connected to master and both of them are connected to pgpool. If the master fails down, pgpool detach it from the pool and perform failover process (slave become master) automatically.
117
118 Tests
119 =====
120 Test PCP interface : ::
121
122         pcp_node_info
123         pcp_detach_node
124         pcp_attach_node
125
126 After starting the postgres master node you should see the following log message in /var/log/postgresql/postgresql-9.1-main.log : ::
127
128 In the postgres master log file you should see : ::
129
130 We assume that pgpool log file is /var/log/pgpool2/pgpool.log. After setting up it's convenient config file and restarting it out shoud see this message in log file : ::
131