使用宝塔面板检测URL状态码是否返回500,并在出现问题时自动重启Nginx脚本
时间:2023年07月12日
/来源:网络
/编辑:佚名
脚本只支持检测一条url状态码,将url中的网址更改为你需要检测的网址。
#!/bin/bash
# 定义 URL 和超时时间
url="http://example.com"
timeout=5
# 检测 URL 是否返回 500 错误
status=$(curl -o /dev/null -s -w %{http_code} --connect-timeout $timeout $url)
if [ $status -eq 500 ]; then
nginx -t && systemctl reload nginx.service
fi
并在宝塔面板中设置计划任务,选择Shell脚本,执行时间为检测时间,我这里设置的是1分钟检测一次
按照以上设置即可
第二种方法,使用方法同上,当遇到Nginx停止时会自动重启
pgrep -x nginx &> /dev/null
if [ $? -ne 0 ];then
/etc/init.d/nginx restart
fi
以上两种方法中的restart可更改为start
restart为重启命令
start为启动命令
#!/bin/bash
# 定义 URL 和超时时间
url="http://example.com"
timeout=5
# 检测 URL 是否返回 500 错误
status=$(curl -o /dev/null -s -w %{http_code} --connect-timeout $timeout $url)
if [ $status -eq 500 ]; then
nginx -t && systemctl reload nginx.service
fi
并在宝塔面板中设置计划任务,选择Shell脚本,执行时间为检测时间,我这里设置的是1分钟检测一次
按照以上设置即可
第二种方法,使用方法同上,当遇到Nginx停止时会自动重启
pgrep -x nginx &> /dev/null
if [ $? -ne 0 ];then
/etc/init.d/nginx restart
fi
以上两种方法中的restart可更改为start
restart为重启命令
start为启动命令
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03