以下脚本为从网上的脚本整理调试完成。

例子主要实现的功能为:

 通过检测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 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐