首页 > 代码库 > PostgreSQL Hot Standby环境监测脚本
PostgreSQL Hot Standby环境监测脚本
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=20s_err_exit=21#先判断主库是否正常运行pg_ctl status | grep runningif [ $? -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.outl=`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环境监测脚本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。