概述
http://127.0.0.1/heart为后端心跳接口
脚本完成的功能是每600秒检测一下后端接口,如果状态码200则正常,
否则则判定为宕机,并执行reboot.sh重启后端
#!/bin/bash
while true;
do status_code=$(curl -s -o /dev/null -w "%{http_code}" http://127.0.0.1/heart)
if [ $status_code -eq 200 ]; then
echo "jar file program is running"
else
echo "jar file program is down, restarting..."
sh /home/reboot.sh
fi
sleep 600
done
知识库链接
最后
以上就是昏睡皮卡丘为你收集整理的linux心跳检测脚本的全部内容,希望文章能够帮你解决linux心跳检测脚本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复