91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Shell如何定時監控http服務的運行狀態

發布時間:2022-02-16 11:01:32 來源:億速云 閱讀:237 作者:iii 欄目:開發技術

這篇文章主要介紹“Shell如何定時監控http服務的運行狀態”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Shell如何定時監控http服務的運行狀態”文章能幫助大家解決問題。

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

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

  [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 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" \

  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如何定時監控http服務的運行狀態”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

鄂托克前旗| 岑巩县| 临城县| 武宣县| 威信县| 沙洋县| 湖口县| 英超| 增城市| 同江市| 沁源县| 遵化市| 宜阳县| 黄骅市| 社旗县| 蒙山县| 黑龙江省| 仁布县| 昌平区| 宜丰县| 旺苍县| 呈贡县| 阿合奇县| 新源县| 兴业县| 通州市| 灵寿县| 自贡市| 定襄县| 井研县| 额济纳旗| 鄯善县| 桃源县| 娱乐| 鄢陵县| 东乡族自治县| 根河市| 烟台市| 托克逊县| 宁城县| 建湖县|