linux 进程自动重启检测脚本
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
以下脚本为从网上的脚本整理调试完成。
例子主要实现的功能为:
通过检测systest.sh 进程是否存在,并且进程数只能为1个,如果该进程数不为1或没有运行,则会在3秒内自动重启该脚本。
大家可以调整sleep 为1 和修改需要检测的进程名和路径,可以实现自己的检测脚本。注意该脚本不能放在cron 中进行运行。可以放在/etc/rc.local 中启动的时候运行一次即可。
#!/bin/sh
checkprocess()
{
if [ "$1" = "" ];
then
return 1
fi
process_num=`ps -ef |grep "$1" |grep -v "grep" |wc -l`
if [ $process_num -eq 1 ];
then
return 0
else
return 1
fi
}
while [ 1 ] ; do
checkprocess "checkHangupEvent.pl"
check_result=$?
if [ $check_result -eq 1 ];
then
killall -9 systest.sh
nohup /root/script/systest.sh &
fi
sleep 3
done
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)