WEB 서비스 건강 상태 검사

1039 단어
	#!/bin/sh
	#date:2015-12-07
	#filename:check_web.sh
	#  :lixingli
	#Email:[email protected]
	#version:v1.0
	
	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!" [email protected]
	else
	    echo "Nginx is running."
	fi
	  sleep 5
	done



더 많은 내용 을 방문 하 세 요. 이 흥 리 블 로그
다음으로 전송:https://www.cnblogs.com/lixingli/p/5539046.html

좋은 웹페이지 즐겨찾기