本篇文章为大家展示了shell监控mysql主从是否正常,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
master上设置定时任务:
#!/bin/sh if [ -f /root/MysqL_slave_status.txt ] then rm -f /root/MysqL_slave_status.txt MysqL -uroot -pxxxxxx -e "show slave status\G" |egrep "_Running:|Behind_Master"|awk '{print $2}' >/root/MysqL_slave_status.txt array=($(cat /root/MysqL_slave_status.txt |xargs)) if [ "${array[0]}" == "Yes" -a "${array[1]}" == "Yes" -a "${array[2]}" == "0" ] then echo "MysqL slave is ok"`` else char="MysqL slave is not ok" sleep 3 echo "$char"|mail -s "xxxxx MysqL_slave is error" 111111111@qq.com fi fi
上述内容就是shell监控MysqL主从是否正常,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程之家行业资讯频道。