#!/bin/bash
wget --spider -q -o /dev/null --tries=1 -T 5 aichh.com
if [ $? -eq 0 ]; then
    echo "`date` 网站访问正常!" >> /root/logs/web_monitor.log
else
    echo "`date` 网站访问异常!重启服务" >> /root/logs/web_monitor.log
    nps restart
    if [ $? -eq 0 ]; then
        echo "`date` 重启服务成功" >> /root/logs/web_monitor.log
    else
        echo "`date` 重启服务失败" >> /root/logs/web_monitor.log
        exit
    fi
fi

 

curl监控网页返回代码

curl -o /dev/null --retry 3 --retry-max-time 8 -s -w %{http_code} www.baidu.com

 

 

 

参与评论