Questions tagged as ['nrpe']
but as mentioned in other articles ,i am able to telnet ,but it is happening from public ip of client , i am doing from Nagios server telnet public ip of client 5666.it is working, but in nrpe.cfg i gave private ip,also in nagios servers .cfg also i gave private ip even check_nrpe is also working ,what to do
We have a new Nagios Core server monitoring Linux hosts running NRPE plugins. Most of them are working as expected, but the SSH Monitor is failing with "NRPE: Command 'check_ssh' not defined". I can run check_ssh locally, but it's not working from the Nagios monitor.
What am I doing wrong? I can run check_ssh on the linix agent itself and it works. Other plugins, like check_users ...

To be sure I don't have any double definition of the command, I created a new debug command name in the nrpe config
/etc/nagios/nrpe.d # grep -R debug
debug.cfg:command[debug_check_disks]=/usr/lib/nagios/plugins/check_disk -w 20% -c 5% -C -w 10000 -c 5000 -p /home -p /
Executing it via nrpe plugin gives me a warning
/usr/lib/nagios/plugins/check_nrpe -H 127.0.0.1 -c debug_check_disks
DISK WARNING ...
I need to be informed by nagios when a process on a remote server is restarted.
The only thing I do not know how to do is to check its process state, and what way to do it?
I got in remote server this nrpe command for now: ./check_procs -c 1: -a "/usr/local/yyyprogram/sbin/XXXdaemon" -s Sl
but this process must work all the time, has own mechanism to restart, and this is the only thing I need to k ...
I have a custom Powershell script called by Nagios using "check_nrpe". Currently all check results output messages with special characters like 'è', 'é' or 'à' are not displayed properly when the check result is shown on Nagios.
How to allow those to be displayed properly?
Check command
$USER1$/check_nrpe -H server.tld -c check_foo -a 7 7 7
Script call on nsclient.ini
[/settings/external scri ...
I'm trying to make a check_nrpe check through Nagios that will alert me on event log being generated and resolve the alert when another event log is generated(recover).
Currently I'm using the following but I'm not sure what's the way to make it also notice another id.
alias_event_log -a test "id='19003' AND strings like 'Not arrived for' AND source='Test'" 1 1 'syntax=%strings%'
How do I make it so that ...