Shell script to monitor MySQL master-slave status

Shell script to monitor MySQL master-slave status

Share a Shell script under Linux to monitor the master-slave status of MySQL and cooperate with the enterprise WeChat robot to alarm

  • SLAVE_IP: The IP address of the monitored host
  • USER: msyql user
  • PASSWORD: mysql password
  • WHEREIS_MYSQL: mysql command path
  • WEBHOOK: Webhook address of WeChat Enterprise robot
  • wx(): WeChat for Enterprise robot function
  • Check_Mysql_Slave(): Main function of the monitoring script
#!/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:
  • How to install MySQL 5.7.29 with one click using shell script
  • MySQL common backup commands and shell backup scripts sharing
  • Shell script to backup MySQL database data regularly and retain it for a specified time
  • Shell script automates the creation of basic configuration of virtual machines: tomcat--mysql--jdk--maven
  • Shell script to implement mysql scheduled backup, deletion and recovery functions
  • A small Shell script to accurately count the number of rows in each Mysql table
  • Create MySQL database accounts on the server in batches through Shell scripts
  • How to add index to mysql using shell script
  • Kill a bunch of MySQL databases with just a shell script like this (recommended)
  • How to use shell scripts to automatically back up multiple MySQL databases every day
  • Introduction and installation of MySQL Shell

<<:  Beginners learn some HTML tags (1)

>>:  56 practical JavaScript tool functions to help you improve development efficiency

Recommend

Briefly describe the use and description of MySQL primary key and foreign key

Table of contents 1. Foreign key constraints What...

Issues and precautions about setting maxPostSize for Tomcat

1. Why set maxPostSize? The tomcat container has ...

Solutions to MySQL batch insert and unique index problems

MySQL batch insert problem When developing a proj...

Deploy the Vue project on a Linux server

Case 1 vue-cli builds the vue3 project, uploads t...

The ultimate solution for writing bash scripts with nodejs

Table of contents Preface zx library $`command` c...

Guide to Efficient Use of MySQL Indexes

Preface I believe most people have used MySQL and...

Simple analysis of EffectList in React

Table of contents EffectList Collection EffectLis...

Detailed installation process of mysql5.7.21 under win10

This article shares the installation of MySQL 5.7...

MySQL learning tutorial clustered index

Clustering is actually relative to the InnoDB dat...

How to recover accidentally deleted table data in MySQL (must read)

If there is a backup, it is very simple. You only...

JavaScript explains the encapsulation and use of slow-motion animation

Implementing process analysis (1) How to call rep...

Implementation of Nginx configuration of multi-port and multi-domain name access

To deploy multiple sites on a server, you need to...

How to use jsx syntax correctly in vue

Table of contents Preface Virtual DOM What is Vir...

Detailed steps to install mysql in Win

This article shares the detailed steps of install...

Native JS music player

This article example shares the specific code of ...