WEB服务健康状态检测

Posted 李兴利

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WEB服务健康状态检测相关的知识,希望对你有一定的参考价值。

	#!/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


  更多内容请访问  李兴利博客

以上是关于WEB服务健康状态检测的主要内容,如果未能解决你的问题,请参考以下文章

nginx自动检测后台服务器健康状态

通过 ServiceProxy 访问无状态服务失败 + ASP.NET 5 Web API 项目引发健康状态错误

一分钟检测应用状态 | 企业应用健康扫描中心发布

健康检查机制

献给Nacos小白的一篇好文:服务的健康检查

献给Nacos小白的一篇好文:服务的健康检查