您好,登錄后才能下訂單哦!
本文主要給大家介紹判斷MYSQL服務是否正常的方法,文章內容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下判斷MYSQL服務是否正常的方法吧。
1)端口判斷
[root@localhost ~]# netstat -lntup | grep 3306 tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 2288/mysqld
2)進程判斷
[root@localhost ~]# ps -ef | grep mysqld mysql 2071 1 0 11:32 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --basedir=/usr mysql 2288 2071 0 11:32 ? 00:00:24 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-error=/var/log/mariadb/mariadb.log --pid-file=/var/run/mariadb/mariadb.pid --socket=/var/lib/mysql/mysql.sock root 10097 6962 0 17:27 pts/1 00:00:00 grep --color=auto mysqld
3)返回值判斷
[root@localhost ~]# mysql -uroot -proot -e "select version();" &>/dev/null [root@localhost ~]# echo $? 0
法一:實現思路是過濾出MYSQL端口3306進行判斷:
#!/bin/bash port=`netstat -lnt|grep 3306|wc-l` if [ $port -ne 1 ] then /etc/init.d/mysql start else echo "MySQL is running." fi 執行結果: [root@localhost ~]# sh mysql1.sh MySQL is running.
法二:實現思路是通過MYSQL進程進行判斷:
#!/bin/bash portcess=`ps -ef|grep mysql|grep -v grep|wc -l` if [ $portcess -ne 2 ] then /etc/init.d/mysqld start else echo "MySQL is running." fi 執行結果: [root@localhost ~]# sh mysql1.sh MySQL is running. 注意:過濾的字符串‘mysql’不要在腳本名字出現,如果出現則不準
法三:實現思路是通過web連接返回值判斷:
#!/bin/bash mysql -uroot -proot -e "select version();" &>/dev/null if [ $? -ne 0 ] then /etc/init.d/mysqld start else echo "MySQL is running." fi 執行結果: [root@localhost ~]# sh mysql1.sh MySQL is running.
小結:web服務監控手段:
端口(本地或者遠程)
本地進程
header(httpd code)
URL(wget,curl
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。