码迷,mamicode.com
首页 > 其他好文 > 详细

check_80.sh

时间:2015-04-24 18:53:28      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

[datacenter@newftp ftpsite]$ cat check_80.sh
#!/bin/bash
function check_url() {
D=$(date +%H%M%S)
curl --connect-timeout 10 -m 20 "127.0.0.1:80" > /dev/null
r_curl=$(echo $?)
}

check_url
if [ $r_curl == 0 ];then
    echo "$D nginx Normal"
else
    echo "$D nginx fail"
fi

exit 0

check_80.sh

标签:

原文地址:http://www.cnblogs.com/lubing666666/p/4453865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!