Linux下檢查MySQL的Slave是否正常

來源:互聯網
上載者:User

寫了一個在Linux下檢查MySQL REPLICATION的SLAVE是否正常的指令碼,比較簡單。
如果想和CRONTAB一塊運行,去掉Read部分即可。
1、指令碼1通過MYSQL 命令 show status 來查看
[root@localhost ~]# cat slave_is_running

#!/bin/sh

#

# Created by david yeung

#

# To determine whether slave is running or not.

echo "Enter your Username"
read USERNAME
echo "Enter your password"
stty -echo
read PASSWD
stty echo
cd /usr/local/mysql/bin

RESULT=`./mysql -u$USERNAME -p$PASSWD -e 'show status like "Slave_running"' -ss | awk '{print $2}'`
if [ "$RESULT" == 'ON' ]
then
echo "Slave is running!" > /var/log/mysql_slave.log
else
echo "Slave is not running!"> /var/log/mysql_slave.log
fi

2、指令碼2通過MYSQL命令 show slave status\G來實現

#!/bin/sh

#

# Created by david yeung

#

# To determine whether slave is running or not.

echo "Enter your Username"
read USERNAME
echo "Enter your password"
stty -echo
read PASSWD
stty echo
cd /usr/local/mysql/bin

RESULT=`./mysql -u$USERNAME -p$PASSWD -e 'show slave status\G' -ss| awk '{print $2}' | head -n 13 | tail -n2`
if [ "$RESULT" == 'Yes Yes' ]
then
echo "Slave is running!" > /var/log/mysql_slave.log
else
echo "Slave is not running!"> /var/log/mysql_slave.log
fi

3、測試一下

[root@localhost ~]# ./slave_is_running
Enter your Username
root
Enter your password
[root@localhost ~]# cat /var/log/mysql_slave.log
Slave is running!

我停掉SLAVE。
[root@localhost ~]# cat /var/log/mysql_slave.log
Slave is not running!

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.