Following this article: http://www.unixmen.com/install-and-conf ... -rhel-6-4/
"Next install nagios with all plug-ins and nagios agents(nrpe-agent) using command:" yum install nagios*
However there is no libexec directory under my nagios folder.
I already have many target configured in my nagios serve, can I install nagios in my server again and does not change anything on the targets?
Install Nagios Agents (nrpe-agent)
Re: Install Nagios Agents (nrpe-agent)
I am not sure what the current status of the EPEL Nagios Core installation is. If I were you, I would highly recommend you remove whatever you installed with EPEL and follow this document to install Core from source. http://sites.box293.com/nagios/guides/i ... centos-6-7
We're working on getting the EPEL installation to be more stable, but for now, the source installation is the best option.
We're working on getting the EPEL installation to be more stable, but for now, the source installation is the best option.
Former Nagios Employee.
me.
me.
Re: Install Nagios Agents (nrpe-agent)
What OS are you running?
Try compiling the plugins manually -
Try compiling the plugins manually -
Code: Select all
cd /tmp
wget http://nagios-plugins.org/download/nagios-plugins-2.1.1.tar.gz
tar zxf nagios-plugins-2.1.1.tar.gz
cd nagios-plugins-2.1.1
./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-openssl
make
make install
Former Nagios Employee
Re: Install Nagios Agents (nrpe-agent)
In that way, I have to install nrpe from source in all remote machines too?
Re: Install Nagios Agents (nrpe-agent)
I will try right nowrkennedy wrote:What OS are you running?
Try compiling the plugins manually -Code: Select all
cd /tmp wget http://nagios-plugins.org/download/nagios-plugins-2.1.1.tar.gz tar zxf nagios-plugins-2.1.1.tar.gz cd nagios-plugins-2.1.1 ./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-openssl make make install
Re: Install Nagios Agents (nrpe-agent)
I apologize, I misunderstood your question. yum install nagios will install Nagios core, not NRPE. The easiest way to install NRPE is by following this document: https://s3.amazonaws.com/uploads.hipcha ... _Agent.pdf
Former Nagios Employee.
me.
me.
Re: Install Nagios Agents (nrpe-agent)
I'm using PlanetLab nodes as Server and remote machines, and for any reason that I dont know, I cant add newusers. I am actually moniroting almost 250 nodes:hsmith wrote:I apologize, I misunderstood your question. yum install nagios will install Nagios core, not NRPE. The easiest way to install NRPE is by following this document: https://s3.amazonaws.com/uploads.hipcha ... _Agent.pdf

Is it possible to monitor DISk, Memory and CPU without source instalation?