前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >shell脚本-监控web可用性 原

shell脚本-监控web可用性 原

作者头像
阿dai学长
发布2019-04-03 10:37:36
6010
发布2019-04-03 10:37:36
举报
文章被收录于专栏:阿dai_linux阿dai_linux

写一个shell脚本,通过curl -I 返回的状态码来判定所访问的网站是否正常。比如,当状态码为200时,才算正常。

代码语言:javascript
复制
#!/bin/bash
#Judge the website OK or not OK
#Written by Adai 2017-09-13
read -p "Please input domain name (eg:www.xxx.com) :" w
n=`curl $w -I |grep 'HTTP' |awk '{print $2}'`
if [ $n -eq 200 ]
then
    echo "The website working well!"
else
    echo "Bad site!"
fi

阿铭:

代码语言:javascript
复制
#/bin/bash
url="http://www.apelearn.com/index.php"
sta=`curl -I $url 2>/dev/null |head -1 |awk '{print $2}'`
if [ $sta != "200" ]
then
    python /usr/local/sbin/mail.py xxx@qq.com "$url down." "$url down"
fi

(adsbygoogle = window.adsbygoogle || []).push({});

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017/09/14 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档