码迷,mamicode.com
首页 > 系统相关 > 详细

linux用于后台监控指定程序运行状况的脚本(如果程序死了则重启程序)

时间:2014-06-08 10:06:03      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:脚本   linux   编程   c   

#!/bin/sh

while true
do

ps | grep "main_3g" | grep -v "grep" > /dev/null


if [ "$?" -ne 0 ]
then

        ls /root/main_3g > /dev/null

        if [ "$?" -eq 0 ]
        then
                chmod 777 /root/main_3g
                /root/main_3g &
                echo "main_3g restart"
        else
                echo "main_3g is not exist."
        fi

fi


ps | grep "main_4g" | grep -v "grep" > /dev/null


if [ "$?" -ne 0 ]
then


        ls /root/main_4g > /dev/null


        if [ "$?" -eq 0 ]
        then   
                chmod 777 /root/main_4g
                /root/main_4g &
                echo "main_4g restart"
        else
                echo "main_4g is not exist."
        fi
fi


sleep 5


done


把上面的脚步运行命令加入到/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用于后台监控指定程序运行状况的脚本(如果程序死了则重启程序)

标签:脚本   linux   编程   c   

原文地址:http://blog.csdn.net/shengnan_wu/article/details/28853989

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!