NRPE on REDHAT 5.9

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
chipiock
Posts: 12
Joined: Mon May 21, 2012 3:08 pm

NRPE on REDHAT 5.9

Post by chipiock »

Hi,

I would like to monitor a redhat 5.9 server. I have follow the documentation : http://assets.nagios.com/downloads/nagi ... _Agent.pdf
But there is a problem after the ./fullinstall I received the message : entrepriseentrepriseserver5.9 is not currently supported. Please use red het or centos versions 5 or 6.

Could you help me ?
regards
F.Gerard
slansing
Posts: 7698
Joined: Mon Apr 23, 2012 4:28 pm
Location: Travelling through time and space...

Re: NRPE on REDHAT 5.9

Post by slansing »

Open the fullinstall script and comment out these lines:

Code: Select all

case "$dist" in
	el5 | el6 )
		: do nothing
		;;
	fedora9|fedora10|fedora11|fedora12|fedora13|fedora14|fedora15 )
		: do nothing
		;;
	* )
		echo "$dist is not currently supported. Please use Red Hat or CentOS versions 5 or 6." >&2
		exit 1
esac
Then save it and run it again.
chipiock
Posts: 12
Joined: Mon May 21, 2012 3:08 pm

Re: NRPE on REDHAT 5.9

Post by chipiock »

now it's working perfectly.

Thank you
Locked