Installing Linux client on RedHat and Suse

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

Installing Linux client on RedHat and Suse

Post by dlukinski »

Hello Nagios Support

We have just acquired your product and would like to begin monitoring our Linux servers with it. Mainly these distributions:
- SuSE Ent 64-bit 10/11
- RedHat EL 64-bit 5.10 / 5.11 / 6.5 / 6.6

We have no prior experience in installing or using XI Linux clients while there is a need to communicate binary and installation & configuration procedures to the third party.
Where to begin and how you could help us with it?

Thank you
User avatar
hsmith
Agent Smith
Posts: 3539
Joined: Thu Jul 30, 2015 11:09 am
Location: 127.0.0.1
Contact:

Re: Installing Linux client on RedHat and Suse

Post by hsmith »

Take a look at this document: https://s3.amazonaws.com/uploads.hipcha ... _Agent.pdf

The steps are all there and pretty simple. The fullinstall script takes care of almost everything for you. If you run into issues, please let us know!
Former Nagios Employee.
me.
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

Re: Installing Linux client on RedHat and Suse

Post by dlukinski »

hsmith wrote:Take a look at this document: https://s3.amazonaws.com/uploads.hipcha ... _Agent.pdf

The steps are all there and pretty simple. The fullinstall script takes care of almost everything for you. If you run into issues, please let us know!
Thank you everything works so far.
It there a way to automate install by including IPs client will be asking for?
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Installing Linux client on RedHat and Suse

Post by lmiltchev »

Try the following:

Code: Select all

cd /tmp
wget http://assets.nagios.com/downloads/nagiosxi/agents/linux-nrpe-agent.tar.gz
tar zxvf linux-nrpe-agent.tar.gz
cd linux-nrpe-agent
Modify the "/tmp/linux-nrpe-agent/subcomponents/install" file in a text editor. Comment out the read & hard code the IP for your Nagios server:

Code: Select all

#read -p "Allow from: " ALLOW_INPUT
ALLOW_INPUT="X.X.X.X"
Run fullinstall with passing the "-n" flag (--non-interactive).

Code: Select all

./fullinstall -n
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked