Search found 13 matches
- Wed Sep 06, 2017 10:40 am
- Forum: Open Source Nagios Projects
- Topic: Check NRPE does not accept arguments after restart
- Replies: 7
- Views: 3336
Re: Check NRPE does not accept arguments after restart
Hello again, I managed to uninstall and reinstall the nrpe service and now it received arguments without any issue. It remains a mystery to me as of why this happened and also what will happen when the server is rebooted again. I will try it as soon as I have the chance. Thank you all for your sugge...
- Fri Jun 23, 2017 9:13 am
- Forum: Open Source Nagios Projects
- Topic: Check NRPE does not accept arguments after restart
- Replies: 7
- Views: 3336
Re: Check NRPE does not accept arguments after restart
Hi, Please find the output below: # /usr/local/nagios/libexec/check_nrpe -H 127.0.0.1 -p 5666 -t 30 -c check_disk -a '5% 10% /dev/mapper/vg_cloudnagios-lv_root' CHECK_NRPE: Received 0 bytes from daemon. Check the remote server logs for error messages. You have new mail in /var/spool/mail/root # /usr...
- Tue Jun 20, 2017 6:47 am
- Forum: Open Source Nagios Projects
- Topic: Check NRPE does not accept arguments after restart
- Replies: 7
- Views: 3336
Re: Check NRPE does not accept arguments after restart
Hi,
I have uploaded the file.
Please let me know if you find anything.
Thank you in advance.
Anna
I have uploaded the file.
Please let me know if you find anything.
Thank you in advance.
Anna
- Sun Jun 18, 2017 11:13 am
- Forum: Open Source Nagios Projects
- Topic: Check NRPE does not accept arguments after restart
- Replies: 7
- Views: 3336
Check NRPE does not accept arguments after restart
Dear all, I am facing an issue with NRPE and I would like your help. I have two nagios core servers installed. The primary nagios is on Centos 6.5 and the backup is on Centos 7.2. The servers were installed almost 2 years ago and everything worked fine. I had setup NRPE checks from one nagios server...
- Wed Sep 07, 2016 11:37 am
- Forum: Nagios XI
- Topic: services escalation questions
- Replies: 9
- Views: 2001
Re: services escalation questions
I will try it.
Thank again
Thank again
- Wed Sep 07, 2016 8:50 am
- Forum: Nagios XI
- Topic: services escalation questions
- Replies: 9
- Views: 2001
Re: services escalation questions
Hi, Thank you for your reply. In the end I managed to do what I wanted. My service definition is as follows: define serviceescalation{ servicegroup_name Class1 contacts myemail first_notification 1 last_notification 5 notification_interval 5 escalation_period 24x7 } What would also be really helpful...
- Thu Aug 25, 2016 8:24 am
- Forum: Nagios XI
- Topic: services escalation questions
- Replies: 9
- Views: 2001
Re: services escalation questions
Hello,
Thank you for your answer.
The problem is that it requires a service_description entry otherwise when I reload nagios I get errors.
I have tried using
but its not correct.
Any ideas?
Thank you for your answer.
The problem is that it requires a service_description entry otherwise when I reload nagios I get errors.
I have tried using
Code: Select all
service_description *Any ideas?
- Tue Aug 02, 2016 2:49 am
- Forum: Nagios XI
- Topic: services escalation questions
- Replies: 9
- Views: 2001
Re: services escalation questions
Hello, I have exactly the same question. Is there a way to escalate services using a specific service group? It would be so much helpfull. I have Nagios® Core™ Version 4.0.8 and I tried to do this following the below instructions but couldn't do it. https://assets.nagios.com/downloads/nagioscore/doc...
- Wed Jun 15, 2016 5:36 am
- Forum: Open Source Nagios Projects
- Topic: Monitor Cluster shared volumes
- Replies: 5
- Views: 4734
Re: Monitor Cluster shared volumes
Hooray!! I figured it out at last... So this is how it worked for me: Command definition: define command { command_name check_hyperv_csv_freespace command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c check_hyperv_csv_freespace -a $ARG1$ } I am not sure why the double quotes are wron...
- Wed Jun 15, 2016 3:55 am
- Forum: Open Source Nagios Projects
- Topic: Monitor Cluster shared volumes
- Replies: 5
- Views: 4734
Re: Monitor Cluster shared volumes
So I figured out one of the problems. My Volume name had spaces in it so this could not pass as an argument, so I modified my script like this: $csvname = $csvname.replace('+' , ' ') and I am running the below from the CLI: .\mine.ps1 -n Cluster+Storage+4 -w 90 -c 95 and correctly I get: OK - Cluste...