您现在的位置是:网站首页> 编程资料编程资料
shell监控脚本实例—监控mysql主从复制_linux shell_
2023-05-26
356人已围观
简介 shell监控脚本实例—监控mysql主从复制_linux shell_
本节内容:
监控mysql主从复制的shell脚本。
说明:
监控脚本在 rhel5 下测试正常,其它版本的linux 系统请自行测试,需要的一些准备工作可以查看这篇文章
代码:
复制代码 代码如下:
#监控mysql 主从复制
cat chk_mysql_rep.sh
#!/bin/bash
#
#script_name:chk_mysql_rep.sh
#check mysql replication
#
#ssh root@xen "/usr/local/mysql/bin/mysql -uroot -pdongnan -e 'show slave status\G' -ss" | awk '/Running:/ {print $2}'
#Yes
#Yes
#
#variables
ssh=/usr/bin/ssh
sh_dir=/root/sh/
crondir=${sh_dir}crontab
source ${sh_dir}CONFIG
hosts="$DB_SLAVE_HOSTS"
#main
#主循环遍历机器 www.jb51.net
for HOST in $hosts;do
log=$crondir/log/mysql_replication_error.log
key=$($ssh root@$HOST "/usr/local/mysql/bin/mysql -uroot -pdongnan -e 'show slave status\G' -ss" | awk '/Running:/ {printf $2}')
#无法连接的主机,跳过本次循环
test -z "$key" && continue
#返回结果真
if [ "$key" == "YesYes" ];then
#flag真,解除报警
if [ -f "${crondir}/log/$HOST.mysql" ];then
#sms
#for mobile in $MOBILES;do
#echo "$HOST replication ok" | /usr/local/bin/gammu --sendsms TEXT "$mobile" -unicode
#done
for mail in $MAILS;do
echo "$HOST replication ok" | mail -s "$HOST replication ok" $mail
done
#flag
rm -f "${crondir}/log/$HOST.mysql"
fi
#返回结果假
else
check_date=$(date '+ %F %T')
#flag假,报警
if [ ! -f "${crondir}/log/$HOST.mysql" ];then
#sms www.jb51.net
#for mobile in $MOBILES;do
#echo "$HOST replication error" | /usr/local/bin/gammu --sendsms TEXT "$mobile" -unicode
#done
for mail in $MAILS;do
echo "$HOST replication error" | mail -s "$HOST replication error" $mail
done
#flag
echo "replication error" >"${crondir}/log/$HOST.mysql"
#log
echo "$check_date $HOST mysql replicaton error" >> $log
fi
fi
#
done
#
本文出自 “dongnan” 博客
您可能感兴趣的文章:
相关内容
- 用于检测进程的shell脚本代码小结_linux shell_
- linux修改目录和文件权限的简单命令解释_linux shell_
- linux生成(加载)动态库静态库和加载示例方法_linux shell_
- 如何编写健壮的Bash脚本(经验分享)_linux shell_
- linux下保留文件系统下剩余指定数目文件的shell脚本_linux shell_
- shell脚本分析 nginx日志访问次数最多及最耗时的页面(慢查询)_linux shell_
- linux shell awk获得外部变量(变量传值)简介_linux shell_
- 又拍云存储同步脚本_linux shell_
- python实现Linux异步epoll代码_linux shell_
- shell实现字符编码转换工具分享_linux shell_
