文章目录开发监控MySQL数据库的脚本httpd的监控脚本 开发监控MySQL数据库的脚本 脚本1: cat check_mysql_01.sh #!/bin/bash echo method1---------------------- if [ `netstat -antlpe|grep 3306|awk -F [ :]+ '{print $5}'` -eq 3306 ];then echo MySQL is running. else echo MySQL is stopping /etc/init.d/mysqld start fi 关闭mysql