A server team builds the infrastructure servers and our team monitors the servers. Our standard (expected) scenario is that nrpe is launched using xinetd on Linux systems and as a daemon on AIX systems.
Occasionally we encounter Linux systems that have nrpe running as a daemon. It is also configured to start with xinetd. This stops the active checks from running. The daemon is started using /etc/init/nrpe.conf.
Which install method causes this because I want to tell them to stop using it.
Thanks!
Code: Select all
[root@remoteserver init]# cat nrpe.conf
# nrpe - the Nagios Remote Plugin Executor
#
# nrpe is a program that runs plugins on this host
# and reports the results back to a nagios server
#
# Copyright (c) 2016 Nagios(R) Core(TM) Development Team
description "the Nagios Remote Plugin Executor"
oom -10
start on started network
stop on runlevel [!2345]
respawn
exec /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -f
[root@remoteserver init]#