宇宙主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

欧基零壹微头条IP归属甄别会员请立即修改密码
查看: 362|回复: 2

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

[复制链接]
发表于 2024-8-10 22:59:03 | 显示全部楼层 |阅读模式
请教大家有没有什么软件或者服务能监测网站是否宕机?我时不时发现nginx会挂掉
发表于 2024-8-10 23:01:37 | 显示全部楼层
谷歌给你找了一个,善用搜索。

#!/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
 楼主| 发表于 2024-8-10 23:03:09 | 显示全部楼层
ncsccc 发表于 2024-8-10 23:01
谷歌给你找了一个,善用搜索。

#!/bin/bash

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

本版积分规则

Archiver|手机版|小黑屋|FastFib VPS论坛

GMT+8, 2024-9-20 06:20 , Processed in 0.055929 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表