Hi!
After upgrade to 5.5.1 (and again in 5.5.2) acknowledge in service problems does not persist.
I acknowledged a service issue and an hour later I was receiving notifications again, and the acknowledge was not there anymore.
It is like the "sticky" checkbox is not working.
Any suggestion on this?
This installation is on CentOS 6.1.
Regards
Enzo
acknowledge doesn't persist
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: acknowledge doesn't persist
Can you show the output of
Code: Select all
ps -ef|grep nagios.cfgRe: acknowledge doesn't persist
This is the output:
Regards
Enzo
Code: Select all
[root@alfa044 ~]# ps -ef|grep nagios.cfg
nagios 8300 1 0 Jul18 ? 00:29:35 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 8376 8300 0 Jul18 ? 00:00:40 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
root 13672 13621 0 09:25 pts/0 00:00:00 grep nagios.cfg
nagios 15332 1 0 Jul31 ? 00:02:07 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 15377 15332 0 Jul31 ? 00:00:02 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfgEnzo
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: acknowledge doesn't persist
You chave multiple parent processes that can cause this.
Run the following:
this should resolve the issue
Run the following:
Code: Select all
service nagios stop
killall -9 nagios
service nagios startRe: acknowledge doesn't persist
Thank you!
After killing those processes, it seems to be working properly.
Regards
Enzo
After killing those processes, it seems to be working properly.
Regards
Enzo
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: acknowledge doesn't persist
Excellentdemr wrote:Thank you!
After killing those processes, it seems to be working properly.
Regards
Enzo
Locking