nagios客户端nrped服务方式启动脚本

发布时间:2020-07-24 04:48:46 作者:hsjz81
来源:网络 阅读:1994

1、平时配置nagios客户端nrped启动最常用的就是在/etc/rc.local文件配置:

/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d


2、但是还有更好的方式(这样方便使用脚本启动或者关闭):

在/etc/init.d目录下创建nrped脚本文件,并执行 chmod +x /etc/init.d/nrped 赋予执行权限

chkconfig --add nrped 或执行直接执行chkconfig nrped on 来添加为服务启动




nrped 脚本文件内容(这个脚本不是我写的):

#!/bin/sh

#

#  Created 2000-01-03 by jaclu@grm.se

#

# nrpe          This shell script takes care of starting and stopping

#               nrpe.

#

# chkconfig: 2345 80 30

# description: nrpe is a daemon for a remote nagios server, \

#              running nagios plugins on this host.

# processname: nrpe

# config: /usr/local/nagios/etc/nrpe.cfg



# Source function library

if [ -f /etc/rc.d/init.d/functions ]; then

. /etc/rc.d/init.d/functions

elif [ -f /etc/init.d/functions ]; then

. /etc/init.d/functions

elif [ -f /etc/rc.d/functions ]; then

. /etc/rc.d/functions

fi


# Source networking configuration.

. /etc/sysconfig/network


# Check that networking is up.

[ ${NETWORKING} = "no" ] && exit 0


NrpeBin=/usr/local/nagios/bin/nrpe

NrpeCfg=/usr/local/nagios/etc/nrpe.cfg

LockFile=/var/lock/subsys/nrpe


# See how we were called.

case "$1" in

  start)

        # Start daemons.

        echo -n "Starting nrpe: "

        daemon $NrpeBin -c $NrpeCfg -d

        echo

        touch $LockFile

        ;;

  stop)

        # Stop daemons.

        echo -n "Shutting down nrpe: "

        killproc nrpe

        echo

        rm -f $LockFile

        ;;

  restart)

        $0 stop

        $0 start

        ;;

  status)

        status nrpe

        exit $?

        ;;

  *)

        echo "Usage: nrpe {start|stop|restart|status}"

        exit 1

esac


exit 0


推荐阅读:
  1. 2.2 nagios 监控客户端
  2. 关于Nagios的NRPE服务端客户端安装

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

nagios 启动脚本 nrped服务

上一篇:skype for business server 发布拓扑报错1603

下一篇:Qt5(VS2013平台开发)应用程序的发布

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》