What would cause this error?
Is this a case where I'd need to specify in the /usr/local/nagios/etc/nrpe.cfg and IP address for allowed hosts?
Right now I'm getting CHECK_NRPE: Error - Could not complete SSL handshake for every service monitored.
I'm running the downloaded VMware image.
CHECK_NRPE: Error - Could not complete SSL handshake
-
desmondlewissmith
- Posts: 21
- Joined: Wed Jul 27, 2011 2:19 pm
- Location: Richardson, TX
- Contact:
CHECK_NRPE: Error - Could not complete SSL handshake
Plan B is to make Plan A work.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: CHECK_NRPE: Error - Could not complete SSL handshake
On the CLIENT computer, I would edit
/etc/xinetd.d/nrpe
add the IP of your Nagios XI machine.
then,
If you continue to receive errors, look in
/var/log/messages
on the CLIENT machine
/etc/xinetd.d/nrpe
Code: Select all
service nrpe
{
flags = REUSE
socket_type = stream
port = 5666
wait = no
user = nagios
group = nagios
server = /usr/local/nagios/bin/nrpe
server_args = -c /usr/local/nagios/etc/nrpe.cfg --inetd
log_on_failure += USERID
disable = no
only_from = 127.0.0.1 ADD_IP_HERE
}
then,
Code: Select all
service xinetd restart/var/log/messages
on the CLIENT machine