文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>nagois配置之nrpe的启动脚本

nagois配置之nrpe的启动脚本

时间:2010-08-06  来源:lzq467826892

######################################################################### cat /etc/init.d/nrped
#!/bin/sh
nrpe_num=`ps aux | grep /bin/nrpe | grep -v grep | wc -l` case $1 in
  start)
    if [ $nrpe_num -eq 1 ]
    then
       echo "Error:nrpe is running."
    else
       /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
       echo "nrpe started successfully."
    fi
  ;;
  stop)
    if [ $nrpe_num -eq 1 ]
    then
       nrpe_pid=`ps aux | grep /bin/nrpe | grep -v grep | awk '{print $2}'`
       kill -9 $nrpe_pid
       echo "nrpe stoped successfully."
    else
       echo "Error:nrpe is stoping."
    fi
  ;;
  restart)
    if [ $nrpe_num -eq 1 ]
    then
       nrpe_pid=`ps aux | grep /bin/nrpe | grep -v grep | awk '{print $2}'`
       kill -9 $nrpe_pid
       echo "nrpe stoped successfully."
       /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
       echo "nrpe started successfully."
    else
       echo "Error:nrpe is stoping"
       /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
       echo "nrpe started successfully."
    fi
esac
########################################################################
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载