NRPE installation on HP-UX
-
progressive.nagiosXI
- Posts: 277
- Joined: Mon Jul 31, 2017 5:54 am
Re: NRPE installation on HP-UX
Yeah i have the 3rd party plugin but, if we are installing nagios plugin tar then it should include the plugin to monitor memory,
Re: NRPE installation on HP-UX
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.
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
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
Here you goprogressive.nagiosXI wrote:Have tried searching for Release note for NRPE agent was not able to find it can you please help here.
https://github.com/NagiosEnterprises/nr ... ANGELOG.md
-
progressive.nagiosXI
- Posts: 277
- Joined: Mon Jul 31, 2017 5:54 am
Re: NRPE installation on HP-UX
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
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
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.
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
We don't have a Agent Matrix, but do have docs for the followingprogressive.nagiosXI wrote:1. Nagios Agent OS support Matrix.
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
NRPE - https://github.com/NagiosEnterprises/nr ... ANGELOG.mdprogressive.nagiosXI wrote:2. Nagios Agent version release note.
NCPA - https://github.com/NagiosEnterprises/nc ... HANGES.rst
Uninstall would be to remove that your custom install script added.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.
This really depends on how it was installed, but likely some variant ofprogressive.nagiosXI wrote:4. Agent start stop procedure for HP-UX
Code: Select all
/sbin/init.d/nrpe stop
/sbin/init.d/nrpe start-
progressive.nagiosXI
- Posts: 277
- Joined: Mon Jul 31, 2017 5:54 am
Re: NRPE installation on HP-UX
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
/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.progressive.nagiosXI wrote:Hi this is Unix system init.d will not work.
-
progressive.nagiosXI
- Posts: 277
- Joined: Mon Jul 31, 2017 5:54 am
Re: NRPE installation on HP-UX
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.
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.