码迷,mamicode.com
首页 > Web开发 > 详细

多种方式来判断web是否启动

时间:2019-08-05 13:59:34      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:wc -l   int   url   null   gre   baidu   run   tar   open   

#!/bin/sh

monitor web run

#by zkg 2019-08-05

#下面是多种方式来判断web是否启动
#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

多种方式来判断web是否启动

标签:wc -l   int   url   null   gre   baidu   run   tar   open   

原文地址:https://blog.51cto.com/1009516/2426562

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!