zoukankan      html  css  js  c++  java
  • WEB服务健康状态检测

    	#!/bin/sh
    	#date:2015-12-07
    	#filename:check_web.sh
    	#作者:lixingli
    	#Email:1162572407@qq.com
    	#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!" 1162572407@qq.com
    	else
    	    echo "Nginx is running."
    	fi
    	  sleep 5
    	done
    
    
    

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

  • 相关阅读:
    API
    MVC判断是否登录
    MVC收藏店铺
    MVC显示界面
    MVC登录
    MVC登录跳转到显示
    MVC退单
    MVC判断登录
    Oracle 千位符转换,及格式转换
    【转】Java 服务端 和 C# 客户端 实现 Socket 通信
  • 原文地址:https://www.cnblogs.com/lixingli/p/5539046.html
Copyright © 2011-2022 走看看