把上面的脚步运行命令加入到/etc/rc.d/rc.local里就行了,在后面添加
ls /root/mymonitor.sh > /dev/null
if [ "$?" -eq 0 ]
then
chmod 777 /root/mymonitor.sh
/root/mymonitor.sh &
echo "run /root/mymonitor.sh"
else
echo "/root/mymonitor.sh is not exist."
fi
linux用于后台监控指定程序运行状况的脚本(如果程序死了则重启程序),布布扣,bubuko.com
linux用于后台监控指定程序运行状况的脚本(如果程序死了则重启程序)
原文地址:http://blog.csdn.net/shengnan_wu/article/details/28853989