码迷,mamicode.com
首页 > Web开发 > 详细

shell 监控url 地址

时间:2018-07-31 21:46:41      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:cut   mail   shell   监控   lse   jid   port   done   photo   

shell 监控url 地址

[root@localhost opt]# cat web_url.sh 
#!/bin/bash
for i in `cat web_url`
do
curl=`curl -I -s $i |head -1|cut -d " " -f2`
if [ "$curl" == "200" ];then
    echo curl $i is ok
else
    echo "$i is fail" | mail -s "web fail url"  yunwei@jiduo365.com
fi
done

[root@localhost opt]# cat web_url
http://192.168.0.123:8080/lemon/portal/index.do
http://192.168.0.123:8080/photo/

shell 监控url 地址

标签:cut   mail   shell   监控   lse   jid   port   done   photo   

原文地址:http://blog.51cto.com/innocence/2152879

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