How to check nrpe service status/start/stop under xinetd?
How to check nrpe service status/start/stop under xinetd?
can i know how to check nrpe agent start/stop/status, which is running under xinetd?
-
avandemore
- Posts: 1597
- Joined: Tue Sep 27, 2016 4:57 pm
Re: How to check nrpe service status/start/stop under xinetd
Easiest way is use "netstat -plnt | grep 5666" it may require installing netstat depending on your distro/version.
Did this resolve your issue?
Did this resolve your issue?
Previous Nagios employee
Re: How to check nrpe service status/start/stop under xinetd
If NRPE is running under xinetd, you can just check if xinetd is running.
Code: Select all
service xinetd statusBe sure to check out our Knowledgebase for helpful articles and solutions!
Re: How to check nrpe service status/start/stop under xinetd
Thanks for your reply, but i am not sure how to start/stop nrpe under xinetd.
Re: How to check nrpe service status/start/stop under xinetd
To stop:
To start:
To restart:
Code: Select all
service xinetd stopCode: Select all
service xinetd startCode: Select all
service xinetd restartBe sure to check out our Knowledgebase for helpful articles and solutions!