进程名称换成自己的 ,这里以jar包为例 可以根据自己的修改
#!/bin/sh #进程名称 process_name=demo.jar while [ 0 -eq 0 ] do ps -ef|grep $process_name |grep -v grep # $? -ne 0 不存在,$? -eq 0 存在 if [ $? -ne 0 ] then echo ">>>process is stop,to start" #启动进程 nohup java -jar $process_name & break else echo ">>>process is runing,to kill" #停止进程 ps -ef | grep $process_name | grep -v grep | awk '{print $2}' | xargs kill #休眠一秒后判断 sleep 1 fi done
centos设置crontab定时执行shell脚本参考:https://www.cnblogs.com/pxblog/p/15796490.html