分享一例用于监控网站是否可以正常打开的shell脚本,可以指定多个网站同时进行监控,实时查看需要监控的WEB页面状态,并发送到指定邮箱。 一个监控网站是否可以正常打开的Shell脚本,可以指定N个网址,放在crontab中定时执行。 将shell脚本放到本机(最近换了mac本),实时查看需要监控的web页面状态,并发送到指定邮箱. 用到了crontab计划任务。
shell脚本代码:
复制代码代码示例:
# vi check_web_alive.sh
(责任编辑:IT)#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH # define url WEB_URL=("http://www.example.com" "http://www1.example.com" "http://www2.example.com") # check network NET_ALIVE=$(ping -c 5 8.8.8.8 |grep 'received'|awk 'BEGIN {FS=","} {print $2}'|awk '{print $1}') if [ $NET_ALIVE == 0 ]; then echo "Network is not active,please check your network configuration!" exit 0 fi # check url for((i=0; i!=${#WEB_URL[@]}; ++i)) { ALIVE=$(curl -o /dev/null -s -m 10 -connect-timeout 10 -w %{http_code} ${WEB_URL[i]} |grep"000000") if [ "$ALIVE" == "000000" ]; then echo "'${WEB_URL[i]}' can not be open,please check!" | mail -s "Website Notification to ${WEB_URL[i]}" yourname@example.com echo "failed" else echo "'${WEB_URL[i]}' is OK!" fi } |