中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

休宁县| 成都市| 浏阳市| 泌阳县| 陆良县| 阳新县| 吴川市| 秭归县| 合山市| 鹰潭市| 镶黄旗| 泾川县| 泰安市| 锦州市| 堆龙德庆县| 黄大仙区| 孟州市| 延吉市| 宣武区| 广西| 教育| 烟台市| 舞钢市| 都江堰市| 包头市| 清流县| 灵璧县| 抚松县| 浮梁县| 宁远县| 小金县| 墨脱县| 理塘县| 许昌市| 昌图县| 合水县| 广宁县| 肇州县| 称多县| 汨罗市| 平遥县|