码迷,mamicode.com
首页 > 数据库 > 详细

shell 监控mysql状态

时间:2015-10-28 12:50:47      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:localhost   successful   failure   mysql   server   


#!/bin/bash 
#/usr/bin/nmap localhost | grep 3306 
#lsof -i:3306 
MYSQLPORT=`netstat -na|grep "LISTEN"|grep "3306"|awk -F[:" "]+ ‘{print $5}‘` 

function checkMysqlStatus(){ 
/usr/bin/mysql -uroot -paaaaaa --connect_timeout=5 -e "show databases;" &>/dev/null 2>&1 
if [ $? -ne 0 ] 
then 
restartMysqlService 
if [ "$MYSQLPORT" == "3306" ];then 
echo "mysql restart successful......" 
else 
echo "mysql restart failure......" 
echo "Server: $MYSQLIP mysql is down, !" > /var/log/mysqlerr 
#mail -s "WARN! server: $MYSQLIP mysql is down" root@admin < /var/log/mysqlerr 
fi 
else 
echo "mysql is running..." 
fi 


function restartMysqlService(){ 
echo "try to restart the mysql service......" 
/bin/ps aux |grep mysql |grep -v grep | awk ‘{print $2}‘ | xargs kill -9 
service mysql start 


if [ "$MYSQLPORT" == "3306" ] 
then 
checkMysqlStatus 
else 
restartMysqlService 
fi

本文出自 “断了的军刀” 博客,请务必保留此出处http://90sec.blog.51cto.com/7404127/1707140

shell 监控mysql状态

标签:localhost   successful   failure   mysql   server   

原文地址:http://90sec.blog.51cto.com/7404127/1707140

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!