vps交流

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


请教大家有没有什么软件或者服务能监测网站是否宕机?我时不时发现nginx会挂掉
谷歌给你找了一个,善用搜索。

#!/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

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

#!/bin/bash

这个命令添加到任务 十分钟执行一次可以的吧

赞(0)
版权声明:本贴采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
帖子名称:《请教大家有没有什么软件或者服务能监测网站是否宕机》
帖子链接:https://bbs.toot.su/188427.html