首页 > Web开发 > 详细

第13题之一:监控web服务是否正常

时间:2019-08-12 12:07:54      阅读:72      评论:0      收藏:0      [点我收藏+]
#!/bin/sh

monitor web run

#by zkg 2019-08-05

#下面是多种方式来判断mysql是否启动
#local 监控
#if [ "netstat -lnt |grep 80|awk ‘{print $4}‘|awk -F: ‘{print $2}‘" = "80" ]
#if [ ps -ef |grep httpd|grep -v grep|wc -l -gt 0 ]
#if [ netstat -lntup|grep httpd|wc -l -gt 0 ]
#if [ lsof -i tcp:80|wc -l -gt 0 ]

#remote 监控
#if [ nmap www.baidu.com -p 80 2>/dev/null|grep open|wc -l -gt 0 ]
#if [ "curl -I -s -o /dev/null -w "%{http_code}\n" http://www.baidu.com" = "200" ]
#if [ curl -I http://www.baidu.com 2>/dev/null|head -1|egrep "200|301"|wc -l -eq 1 ]

then
    echo "httpd is running"

else
echo "httpd is stopped"
/data/http/bin/httpd start
fi

第13题之一:监控web服务是否正常

原文:https://blog.51cto.com/1009516/2428712

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!