MySQL主從複製監控

來源:互聯網
上載者:User

標籤:running

#!/bin/bash #check MySQL_Slave Status #crontab time 00:10 MYSQLPORT=`netstat -na|grep "LISTEN"|grep "3306"|awk -F[:" "]+ ‘{print $4}‘` MYSQLIP=`ifconfig eth0|grep "inet addr" | awk -F[:" "]+ ‘{print $4}‘` STATUS=$(/usr/bin/mysql -S /var/lib/mysql/mysql.sock -e "show slave status\\G" | grep -i "running")STATUS=$(/usr/bin/mysql -uroot -pPASSWD  -e "show slave status\\G"|grep "Running" |awk ‘{print $2}‘))   IO_env=`echo $STATUS | grep IO | awk  ‘ {print $2}‘` SQL_env=`echo $STATUS | grep SQL | awk  ‘{print $2}‘` DATA=`date +"%y-%m-%d %H:%M:%S"` if [ "$MYSQLPORT" == "3306" ] then  echo "mysql is running"else  mail -s "warn!server: $MYSQLIP mysql is down" [email protected]  fiif [ "$IO_env" = "Yes" -a "$SQL_env" = "Yes" ] then  echo "Slave is running!"else  echo "####### $DATA #########">> /data/data/check_mysql_slave.log   echo "Slave is not running!" >>    /data/data/check_mysql_slave.log   echo "Slave is not running!" | mail -s "warn! $MYSQLIP MySQL Slave is not running" [email protected]  fi #設定cron每十分鐘運行一次#*/10 * * * * root /bin/sh /root/mysql_slave.sh

本文出自 “棒棒不是糖” 部落格,謝絕轉載!

MySQL主從複製監控

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.