centos 7中监控mysql 数据库脚本(监控端口)
监控mysql数据库的方法如下:
1、监控端口 netstat -nltp |grep 3306
2、监控进程 ps -ef |grep 3306
3、登陆进去查看查看返回值
[root@a cron]# mysql -uroot -p123456 -e "select version();" &>/dev/null
4、判断pid文件
[root@a cron]# cat /var/run/mysqld/mysqld.pid
29472
5、查看socket文件
下面的脚本是通过端口进行监控mysql
[root@a cron]# cat check_mysql.sh
#!/bin/bash
port=`netstat -nltp |grep 3306 |wc -l`
if [ $port -ne 1 ]
then
/usr/bin/systemctl start mysqld
echo "Starting MySQl.. SUCCESS!"
else
echo "MySQL is running."
fi
测试脚本如下:
[root@a cron]# netstat -nltp |grep 3306 |wc -l
1
[root@a cron]# sh check_mysql.sh
MySQL is running.
[root@a cron]# pkill mysqld #停止mysql服务
[root@a cron]# netstat -nltp |grep 3306 |wc -l
0
[root@a cron]# sh check_mysql.sh
Starting MySQl.. SUCCESS!
[root@a cron]# sh check_mysql.sh
MySQL is running.