# Failover command for streaming replication.
# This script assumes that DB node 0 is primary, and 1 is standby. #
# If standby goes down, do nothing. If primary goes down, create a # trigger file so that standby takes over primary node. #
# Arguments: $1: failed node id. $2: new master hostname. $3: path to # trigger file.
failed_node=$1 new_master=$2 trigger_file=$3
# Do nothing if standby goes down. if [ $failed_node = 1 ]; then fi
# Create the trigger file.
/usr/bin/ssh -T $new_master /bin/touch $trigger_file exit 0;
exit 0;
ÔÚÖ÷¿âµÄ$PGDATAĿ¼ÏÂÃæн¨basebackup.sh
#! /bin/sh
# Recovery script for streaming replication. # This script assumes followings: #
# 1) Executed on the primary node by pgpool_recovery function. # 2) Executed as \# 3) \
# 4) can connect to \# password.
# 5) Password less access using ssh from the primary node to the # target node is possible. # 6) Arguments for the scripts are: # # # #
datadir=$1 desthost=$2 destdir=$3 port=$4
/usr/local/pgsql/bin/psql -p $port -c \postgres
rsync -C -a -c --delete -e ssh --exclude postgresql.conf --exclude postmaster.pid \\ --exclude postmaster.opts --exclude pg_log --exclude pg_xlog \\ --exclude recovery.conf $datadir/ $desthost:$destdir/
ssh -T $desthost mv $destdir/recovery.done $destdir/recovery.conf
/usr/local/pgsql/bin/psql -c \
$1: database cluster path on the primary node $2: hostname or IP address to be recovered $3: database cluster path on target node
$4: port number of of the primary database cluster
# 7) psql, rsync, ssh are available in the command search path.
ÔÚ$PGDATAĿ¼ÏÂÃæн¨pgpool_remote_startÎļþ£¨¸³Óè¿ÉÖ´ÐÐȨÏÞ£©
#! /bin/sh
if [ $# -ne 2 ] then
echo \ exit 1 fi DEST=$1 DESTDIR=$2
PGCTL=/usr/local/pgsql/bin/pg_ctl
ssh -T $DEST $PGCTL -w -D $DESTDIR -l /home/postgres/postgresql.log start
ÅäÖÃpool_hba.conf cd /usr/local/pgpool/etc/
cat /usr/local/pgsql/data/pg_hba.conf > pool_hba.conf
Æô¶¯pgpoolÃüÁ
pgpool -n >/var/log/pgpool/pgpool.log 2>&1 & Í£Ö¹pgpoolÃüÁ pgpool -m fast stop
µÇ¼pgpoolÃüÁ
psql -p 9999 -U postgres -d postgres
²é¿´pgpoolËùÓеĽڵãÐÅÏ¢£º show pool_nodes;
status:
1:½ÚµãÆô¶¯£¬»¹Ã»Óб»Á¬½Ó 2£º½ÚµãÆô¶¯£¬ÒѾ±»Á¬½Ó 3£º½ÚµãdownµôÁË
Ä£Äâ½ÚµãdownµôµÄÇé¿ö£ºÖ÷¿âºÍ±¸¿âÒ»Õý³£ÔËÐУ¬±¸¿â¶þÖ±½ÓÍ£Ö¹·þÎñ£¬µ±ÔÙÖØÐÂÆô¶¯±¸¿â¶þʱ£¬ÔÚÖ÷¿âÉϲ鿴pool_nodes½Úµã·¢ÏÖ£º
µ±ÓÃshow pool_nodes;ÃüÁîÈ¥²é¿´µÄʱºò£¬·¢ÏÖÓиö½ÚµãµÄstatusΪ3µÄʱºò£¬ËµÃ÷Õâ¸ö½ÚµãÒѾdownÁË£¬ÖØлָ´µÄÃüÁîÈçÏ£º£¨ÐèÒª»Ö¸´µÄ½Úµã£¬Êý¾Ý¿â·þÎñ±ØÐëÊÇֹͣ״̬£© ½Úµã»Ö¸´µÄÃüÁpcp_recovery_node -d 3600 172.16.144.145 9898 postgres 123456 2 172.16.144.145 pgpool(°²×°µÄÖ÷»úIP) 9898£ºpgpoolµÄ¶Ë¿ÚºÅ postgres:Óû§Ãû 123456£ºÃÜÂë 2£º½ÚµãID
ÃüÁîÖ´Ðкó³É¹¦·¢ÏÖ£º
´Ëʱstatus״ֵ̬ÓÉ3±äΪ2£¬´ú±íÕâ¸ö½ÚµãÕý³£ÁË¡£
°ÑÒ»¸öнڵã¼ÓÈëµ½pgpoolÖеÄÃüÁ
pcp_attach_node -d 5 172.16.144.200 5432 postgres 123456 1 172.16.144.200Òª¼ÓÈë½ÚµãµÄÊý¾Ý¿âIPµØÖ· 5432£ºÒª¼ÓÈë½ÚµãµÄÊý¾Ý¿â¶Ë¿ÚºÅ postgres:Òª¼ÓÈë½ÚµãµÄÊý¾Ý¿âµÄÓû§Ãû 123456£ºÒª¼ÓÈë½ÚµãµÄÊý¾Ý¿âÃÜÂë