centos 监控web站点是否500 脚本 + cron 定时任务
要监控CentOS上的Web站点是否返回500错误,你可以编写一个简单的shell脚本,使用curl命令来检查HTTP响应状态码。以下是一个基本的脚本示例:
#!/bin/bash
# Web站点的URL
URL="http://yourwebsite.com"
# 使用curl命令检查HTTP响应状态码
STATUS=$(curl -o /dev/null --silent --head --write-out '%{http_code}\n' $URL)
# 检查状态码是否为500
if [ "$STATUS" -eq 500 ]; then
echo "Error: Web site is returning 500 status code."
# 在这里添加发送警报或执行其他操作的代码
else
echo "Web site is OK, status code: $STATUS"
fi
将上面的脚本保存为一个文件,例如check_website.sh,然后赋予它执行权限:
chmod +x check_website.sh
现在,你可以通过运行脚本来检查Web站点是否返回500错误:
./check_website.sh
如果你希望定期运行这个脚本,可以使用cron来设置一个定时任务。例如,要每5分钟运行一次脚本,可以将以下行添加到你的crontab文件中:
# crontab -e 编辑 crond
*/5 * * * * /path/to/check_website.sh // 每五分钟一次
0 */8 * * * /path/to/command // 每8小时发送一次
如果aws 使用不了 crontab -e 重新安装即可
yum remove crontabs
yum install crontabs
卸载重新安装定时任务服务即可
开启,关闭 cron
还可以使用systemctl命令来管理crontabs服务,例如使用systemctl start crond来启动服务,
使用systemctl stop crond来停止服务。同时,chkconfig命令也可以用来设置crontabs服务的开机启动,
例如使用chkconfig crond on来设置开机自动启动crontabs服务
查看 cron是否启动
ps -ef | grep crond
linux 发送飞书消息
curl -X POST -H "Content-Type: application/json" \
-d '{"msg_type":"text","content":{"text":"request example"}}' \
https://open.feishu.cn/open-apis/bot/v2/hook/xxxxxxxxxxxxxxxxx
cron 配置规则
20个超实用的Crontab使用实例
1.每天 02:00 执行任务
0 2 * * * /bin/sh backup.sh
2.每天 5:00和17:00执行任务
0 5,17 * * * /scripts/script.sh
3.每分钟执行一次任务
通常情况下,我们并没有每分钟都需要执行的脚本(默默的想到了12306--)
* * * * * /scripts/script.sh
4.每周日 17:00 执行任务
0 17 * * sun /scripts/script.sh
5.每 10min 执行一次任务
*/10 * * * * /scripts/monitor.sh
6.在特定的某几个月执行任务
* * * jan,may,aug * /script/script.sh
7.在特定的某几天执行任务
0 17 * * sun,fri /script/scripy.sh
在每周五、周日的17点执行任务
8.在某个月的第一个周日执行任务
0 2 * * sun [ $(date +%d) -le 07 ] && /script/script.sh
9.每四个小时执行一个任务
0 */4 * * * /scripts/script.sh
10.每周一、周日执行任务
0 4,17 * * sun,mon /scripts/script.sh
11.每个30秒执行一次任务
我们没有办法直接通过上诉类似的例子去执行,因为最小的是1min。但是我们可以通过如下的方法。
* * * * * /scripts/script.sh
* * * * * sleep 30; /scripts/script.sh
12.多个任务在一条命令中配置
* * * * * /scripts/script.sh; /scripts/scrit2.sh
13.每年执行一次任务
@yearly /scripts/script.sh
@yearly 类似于“0 0 1 1 *”。它会在每年的第一分钟内执行,通常我们可以用这个发送新年的问候。
14.系统重启时执行
@reboot /scripts/script.sh
15.将 Cron 结果重定向的特定的账户
默认情况下,cron 只会将结果详情发送给 cron 被制定的用户。如果需要发送给其他用户,可以通过如下的方式:
# crontab -l
MAIL=bob
0 2 * * * /script/backup.sh
16.将所有的 cron 命令备份到文本文件当中
这是一个当我们丢失了cron命令后方便快速的一个恢复方式。