码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL Hot Standby环境监测脚本

时间:2016-08-31 18:57:51      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

   Postgresql 在9.0引进了Stream Replication;为数据库集群提供一种高可用性;本文提供一个环境监测脚本

   环境搭建: 参考--http://www.cnblogs.com/lottu/p/5584923.html

   环境切换: 参考--http://www.cnblogs.com/lottu/p/5725309.html

   提供脚本如下:

##===========================================================  
##   postgres_db_check.sh                
##   created by lottu           
##   2016/08/07    
##   usage: postgres_db_check.sh                            
##============================================================  
#!/bin/bash  

export LANG="en_US.utf8"  
export DATE=`date +"%Y%m%d"` 
admail="lottu_zhu@staff.easou.com"
standby_number=1    #本环境只有一个备库;
m_err_exit=20
s_err_exit=21

#先判断主库是否正常运行
pg_ctl status | grep running
if [ $? -ne 0 ];then
  echo "master postgres db is not running;please check it!" | mail -s "master postgres db is not running" $admail
  exit ${m_err_exit}
fi

#查看集群中流复制的状态;可根据表pg_stat_replication进行判断
psql -t -q -c "select client_addr,sync_state,state from pg_stat_replication" > lottu.out

l=`awk -F"|" /streaming/{n+=1}END{print n} lottu.out`

if [ $l -ne ${standby_number} ];then
  echo "standby postgres db is not running;please check it!" | mail -s "standby postgres db is not running" $admail
  exit ${s_err_exit}
fi

 

PostgreSQL Hot Standby环境监测脚本

标签:

原文地址:http://www.cnblogs.com/lottu/p/5827008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!