Linux Shell 进程守护脚本

有时候需要进程守护,确保进程稳定运行,这个时候一个shell是最方便的,随手查了下,找到一个很好用的脚本:

#!/bin/sh
while true; do
server=`ps aux | grep 进程关键字 | grep -v grep`
if [ ! "$server" ]; then
启动服务的命令
sleep 10
fi
sleep 5
done

shell整理自:http://blog.csdn.net/ljxfblog/article/details/52036004


未经允许不得转载:阿藏博客 » Linux Shell 进程守护脚本