linux进程守护脚本
Posted 人艰不拆_zmc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux进程守护脚本相关的知识,希望对你有一定的参考价值。
为了防止进程异常挂掉,为了避免影响业务,编写一个守护进程,定时检查某个进程是否存在,如果不存在则自动启动该进程。
编写脚本文件daemon.sh文件
while true; do server=`ps aux | grep test| grep -v grep` if [ ! "$server" ]; then cd 目录 nohup java -jar -XX:PermSize=128m -Xms1024m -Xmx1024m test.jar & fi sleep 5 done
启动命令
nohup ./daemon.sh &
以上是关于linux进程守护脚本的主要内容,如果未能解决你的问题,请参考以下文章