请教大家有没有什么软件或者服务能监测网站是否宕机

查看 38|回复 2
作者:hins   
请教大家有没有什么软件或者服务能监测网站是否宕机?我时不时发现nginx会挂掉

有没有什么, 网站, 软件

ncsccc   
谷歌给你找了一个,善用搜索。
#!/bin/bash
# author: 龙笑天
# website: https://www.ilxtx.com/linux-shell-auto-restart-nginx.html
# 检查 nginx 的状态
curl -s 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
hins
OP
  

ncsccc 发表于 2024-8-10 23:01
谷歌给你找了一个,善用搜索。
#!/bin/bash

这个命令添加到任务 十分钟执行一次可以的吧
您需要登录后才可以回帖 登录 | 立即注册

返回顶部