检查网站状态shell脚本

回复 收藏
while true
do
#pidfile=`cat /application/nginx/logs/nginx.pid`
#status_code=`curl -s -w "%{http_code}" -o /dev/null 192.168.0.160`
port=`netstat -tunlp|grep 80|wc -l`
process=`ps -ef|grep nginx|grep -v grep|wc -l`

if [ $port -eq 0 ] && [ $process -eq 0 ]
  then
    /application/nginx/sbin/nginx
else
    echo "Nginx is running."
fi
  sleep 5
port=`netstat -tunlp|grep 80|wc -l`
process=`ps -ef|grep nginx|grep -v grep|wc -l`
status_code=`curl -s -w "%{http_code}" -o /dev/null 192.168.0.160`
if [ $port -eq 0 ] && [ $process -eq 0 ] || [ $status_code -ne 200 ]
  then
    echo "Warnning,Nginx service is not OK."|mail -s "Warnning,Nginx no OK!" zhonglinux@126.com
else
    echo "Nginx is running."
fi
  sleep 5
done
2016-06-14 14:08 举报
已邀请:

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: