NRPE installation on HP-UX

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

Yeah i have the 3rd party plugin but, if we are installing nagios plugin tar then it should include the plugin to monitor memory,
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: NRPE installation on HP-UX

Post by lmiltchev »

The "official" nagios plugins (I believe 54 at this time) are meant to work on most operating systems. We cannot possibly include ALL plugins that work on all operating systems in our official package. For example, memory is checked differently on different operating systems, so there is no official memory plugin included in the tarball. This is where the 3rd party nagios plugins come in. There are thousands of different plugins, listed on the Nagios Exchange, which can be easily added to Nagios Core or Nagios XI.

I hope this makes sense.
Be sure to check out our Knowledgebase for helpful articles and solutions!
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

Have tried searching for Release note for NRPE agent was not able to find it can you please help here.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: NRPE installation on HP-UX

Post by scottwilkerson »

progressive.nagiosXI wrote:Have tried searching for Release note for NRPE agent was not able to find it can you please help here.
Here you go
https://github.com/NagiosEnterprises/nr ... ANGELOG.md
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

Hi,
We have shared the details with client will update you.

But we are not sure how to stop and Start NRPE agent without any changes in inetd.conf file can you please help.

Thanks
Abhijay
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

Being specific these questions were asked by them

1. Nagios Agent OS support Matrix.
2. Nagios Agent version release note.
3. Agent installation/uninstallation procedure for HP-UX. ==> Installation we have made a custom script by following the steps and its working. for uninstall we are not sure.
4. Agent start stop procedure for HP-UX

We are using NRPE as agent.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: NRPE installation on HP-UX

Post by scottwilkerson »

progressive.nagiosXI wrote:1. Nagios Agent OS support Matrix.
We don't have a Agent Matrix, but do have docs for the following
NRPE - https://support.nagios.com/kb/article.php?id=515
NCPA - https://www.nagios.org/ncpa/
WMI can be used on Windows machines
SSH is also available on Linux variants
progressive.nagiosXI wrote:2. Nagios Agent version release note.
NRPE - https://github.com/NagiosEnterprises/nr ... ANGELOG.md
NCPA - https://github.com/NagiosEnterprises/nc ... HANGES.rst
progressive.nagiosXI wrote:3. Agent installation/uninstallation procedure for HP-UX. ==> Installation we have made a custom script by following the steps and its working. for uninstall we are not sure.
Uninstall would be to remove that your custom install script added.
progressive.nagiosXI wrote:4. Agent start stop procedure for HP-UX
This really depends on how it was installed, but likely some variant of

Code: Select all

/sbin/init.d/nrpe stop
/sbin/init.d/nrpe start
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

Hi this is Unix system init.d will not work.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: NRPE installation on HP-UX

Post by scottwilkerson »

progressive.nagiosXI wrote:Hi this is Unix system init.d will not work.
/sbin/init.d won't work? We don't have a HP UX server here, but when I googled how to start services on HP-UX that's what I came up with.
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
progressive.nagiosXI
Posts: 277
Joined: Mon Jul 31, 2017 5:54 am

Re: NRPE installation on HP-UX

Post by progressive.nagiosXI »

This is nor working giving error NRPE not found,

We have followed below steps form NRPE installation general document to install NRPE in HP -UX

gunzip -c nrpe-3.2.1.tar.gz | tar xf -
cd nrpe-3.2.1
./configure --enable-command-args

make all

make install

make install-config

make install-inetd

echo nrpe \ \ 5666/tcp\ \ # Nagios monitoring >> /etc/services

echo nrpe stream tcp nowait nagios /usr/local/nagios/bin/nrpe nrpe -c /usr/local/nagios/etc/nrpe.cfg -i >> /etc/inetd.conf

mv /tmp/nrpe.cfg /usr/local/nagios/etc/nrpe.cfg
/usr/sbin/inetd -c



but unaware of how to start or stop.
Locked