shell 实现监控Web服务状态

Posted

tags:

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

使用shell 实现监控Web服务状态

原理:下载网站,并把输出写入 /dev/null,如果该命令执行结果成功(返回0)打印成功提示,如果下       载失败,这再下载一次,如果还是失败,就打印失败

脚本如下

[[email protected] ~]# cat checkurl.sh 
#!/bin/bash
CheckUrl(){
timeout=5
fails=0
success=0
while true
  do
    wget --timeout=$timeout --tries=1 http://www.baid1u.com -q -O /dev/null
    if [ $? -ne 0 ]
      then
        let fails=fails+1
    else
        let success+=1
    fi
    if [ $success -ge 1 ];then
        echo success
        exit 0
    fi
    if [ $fails -ge 2 ];then
        echo fail
        exit 2
    fi
done
}
CheckUrl

测试,故意百度的网址写错

[[email protected] ~]# sh checkurl.sh 
fail


本文出自 “知识改变命运” 博客,请务必保留此出处http://ahtornado.blog.51cto.com/4826737/1928317

以上是关于shell 实现监控Web服务状态的主要内容,如果未能解决你的问题,请参考以下文章

案例六:shell脚本监控httpd服务80端口状态

案例五:shell脚本实现定时监控http服务的运行状态

linux下使用smtp+shell脚本实现服务器存活状态监控

shell基本语法2

简单shell脚本监控网站页面

使用golang实现目录的监控过程