请教大家有没有什么软件或者服务能监测网站是否宕机
-
#!/bin/bash
author: 龙笑天
website: https://www.ilxtx.com/linux-shell-auto-restart-nginx.html
检查 nginx 的状态
curl -s http://127.0.0.1/nginx_status > /dev/null 2>&1
如果 nginx 没有运行
if [ $? -ne 0 ]
then
echo "Nginx is not running. Restarting Nginx."
/etc/init.d/nginx restart
else
echo "Nginx is running."
fi -
https://hostloc.com/forum.php?mod=redirect&goto=findpost&pid=15773551&ptid=1333950- ncsccc 发表于 2024-8-10 23:01ncsccc 发表于 2024-8-10 23:01
谷歌给你找了一个,善用搜索。
谷歌给你找了一个,善用搜索。#!/bin/bash
#!/bin/bash这个命令添加到任务 十分钟执行一次可以的吧