Share a Shell script under Linux to monitor the master-slave status of MySQL and cooperate with the enterprise WeChat robot to alarm
#!/bin/bash # source /etc/profile export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" SLAVE_IP=`ip add | grep inet | grep brd | awk -F / '{print $1}' | awk -F " " '{print $2}' | awk 'NR==1'` USER=monitor PASSWORD=xxxxxx TIME=`date` WHEREIS_MYSQL=/opt/mysql/bin/mysql WEBHOOK='https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=bb09197b-5ff6-4928-9872-xxxxxx' wx(){ cat > $0.msg << EOF curl '$WEBHOOK' \ -H 'Content-Type: application/json' \ -d ' { "msgtype": "text", "text": { "content": "$1", } }' EOF sh $0.msg && rm -rf $0.msg } Check_Mysql_Slave() { $WHEREIS_MYSQL -u$USER -p$PASSWORD -h$SLAVE_IP -e "select version();" >/dev/null 2>&1 if [ $? -ne 0 ];then echo "Mysql was stopped $DATE" >> /data/mysql/check.log ERROR="ERROR:Mysql-$SLAVE_IP cannot connect\n$TIME" wx "$ERROR" else #echo "1" >> /data/mysql/check.log IO_SQL_STATUS=`$WHEREIS_MYSQL -u$USER -p$PASSWORD -h$SLAVE_IP -e "show slave status \G" 2>/dev/null | awk '/Slave_.*_Running:/{print $1$2}'` for i in $IO_SQL_STATUS;do THREAD_STATUS_NAME=${i%:*} THREAD_STATUS=${i#*:} if [ "$THREAD_STATUS" != "Yes" ]; then STATUS="ERROR:Mysql-$SLAVE_IP $THREAD_STATUS_NAME status is $THREAD_STATUS!\n$TIME" echo "$STATUS" >> /data/mysql/check.log wx "$STATUS" fi done fi } Check_Mysql_Slave The final alarm effect is as follows: The above is the details of the shell script for monitoring the master-slave status of MySQL. For more information about monitoring the master-slave status of MySQL, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Beginners learn some HTML tags (1)
>>: 56 practical JavaScript tool functions to help you improve development efficiency
Table of contents 1. Foreign key constraints What...
1. Why set maxPostSize? The tomcat container has ...
MySQL batch insert problem When developing a proj...
Case 1 vue-cli builds the vue3 project, uploads t...
Table of contents Preface zx library $`command` c...
Preface I believe most people have used MySQL and...
Table of contents EffectList Collection EffectLis...
This article shares the installation of MySQL 5.7...
Clustering is actually relative to the InnoDB dat...
If there is a backup, it is very simple. You only...
Implementing process analysis (1) How to call rep...
To deploy multiple sites on a server, you need to...
Table of contents Preface Virtual DOM What is Vir...
This article shares the detailed steps of install...
This article example shares the specific code of ...