溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

shell腳本怎樣實現(xiàn)定時監(jiān)控http服務的運行狀態(tài)

發(fā)布時間:2021-11-08 11:04:09 來源:億速云 閱讀:134 作者:小新 欄目:建站服務器

這篇文章主要為大家展示了“shell腳本怎樣實現(xiàn)定時監(jiān)控http服務的運行狀態(tài)”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“shell腳本怎樣實現(xiàn)定時監(jiān)控http服務的運行狀態(tài)”這篇文章吧。

注意:監(jiān)控方法可以為端口、進程、URL模擬訪問方式,或者三種方法綜合。

說明:由于截止到目前僅講了if語句,因此,就請大家用if語句來實現(xiàn)。

  [root@oldboy-B scripts]# cat apachemon
  #!/bin/sh
  #created by oldboy 20110523
  . /etc/init.d/functions
  HTTPPRONUM=`ps -ef|grep http|grep -v grep|wc -l`
  #if [ $HTTPPRONUM -lt 1 ];then
  if [[ $HTTPPRONUM -lt 1 ]];then
  action “httpd is not running” /bin/false
  action “httpd is not running” /bin/false >/tmp/httpd.log
  httpdctl restart >/dev/null 2>&1
  action “httpd is restart” /bin/true
  mail -s “`uname -n`’s httpd restarted at `(date)`” 31333741@qq.com
  exit 1
  else
  action “httpd is running” /bin/true
  exit 0
  fi
  [root@oldboy-B scripts]# apachemon
  httpd is running [確定]
  [root@oldboy-B scripts]# pkill httpd
  [root@oldboy-B scripts]# ps -ef |grep http |grep -v grep
  [root@oldboy-B scripts]# apachemon
  httpd is not running [失敗]
  httpd is restart [確定]
  [root@oldboy-B scripts]# ps -ef|grep http|grep -v grep
  root 5845 1 1 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5852 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5853 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5854 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5855 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5856 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5857 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5858 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
  apache 5859 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart

腳本 改進

  [root@oldboy-B /]# echo oldboytest >/var/www/html/index.htm
  [root@oldboy-B /]# wget –quiet –spider http://10.0.0.161/index.htm
  [root@oldboy-B /]# echo $?
  0
  [root@oldboy-B /]# ll index.htm
  ls: index.htm: 沒有那個文件或目錄
  [root@oldboy-B scripts]# cat apachemon1
  #!/bin/sh
  #created by oldboy 20110523
  
  . /etc/init.d/functions
  #HTTPPRONUM=`ps -ef|grep http|grep -v grep|wc -l` #=====>這個是基于http方式進行判斷
  wget –quiet –spider http://10.0.0.161/index.htm #=====>這個是基于WGET URL方式進行判斷
  if [ $? -ne 0 ];then
  action “httpd is not running” /bin/false >/tmp/httpd.log
  httpdctl restart >/dev/null 2>&1
  action “httpd is restart” /bin/true >>/tmp/httpd.log
  mail -s “`uname -n`’s httpd restarted at `(date)`” mail@qq.com
  exit 1
  else
  action “httpd is running” /bin/true
  exit 0
  fi

真正使用時,有些輸出是不需要的就去掉

  [root@oldboy-B scripts]# cat apachemon1
  #!/bin/sh
  #created by oldboy 20110523
  #
  . /etc/init.d/functions
  wget –quiet –spider http://10.0.0.161/index.htm #=====>這個是基于WGET URL方式進行判斷
  if [ $? -ne 0 ];then
  action “httpd is not running” /bin/false >/tmp/httpd.log
  httpdctl restart >/dev/null 2>&1
  action “httpd is restart” /bin/true >>/tmp/httpd.log
  mail -s “`uname -n`’s httpd restarted at `(date)`” 31333741@qq.com
  exit 1
  fi

多條件判斷的寫法

  [root@oldboy-B scripts]# cat apachemon1
  #!/bin/sh
  #created by oldboy 20110523
  #
  . /etc/init.d/functions
  HTTPPORTNUM=`netstat -lnt|grep 80|grep -v grep|wc -l`
  HTTPPRONUM=`ps -ef|grep http|grep -v grep|wc -l`
  wget –quiet –spider http://10.0.0.161/index.htm && RETVAL=$?
  if [ $RETVAL -ne 0 ] || [ $HTTPPORTNUM -ne 1 ] || [ $HTTPPRONUM -lt 1 ] ;then
  #if [ "$RETVAL" != "0" -o "$HTTPPORTNUM" != "1" -o "$HTTPPRONUM" \< "1" ] ;then
  action “httpd is not running” /bin/false
  action “httpd is not running” /bin/false >/tmp/httpd.log
  httpdctl restart >/dev/null 2>&1
  action “httpd is restart” /bin/true
  mail -s “`uname -n`’s httpd restarted at `(date)`” 31333741@qq.com
  exit 1
  else
  action “httpd is running” /bin/true
  exit 0
  fi

以上是“shell腳本怎樣實現(xiàn)定時監(jiān)控http服務的運行狀態(tài)”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI