Page 1 of 1

Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 7:35 am
by bwelker
Greetings all,

I've searched through and tried at least 5 different threads with this similar issue, but none of them seem to be exactly what I'm seeing when I run through the troubleshooting steps in each thread. So at that point, figured I would just open my own case and see if someone would be able to assist me.

I stood up this instance a couple months back, didn't touch it as other priorities were ahead of this. So as of yesterday, I fully updated the box, and the Nagios XI instance to the latest 5.4.9. Before the updates, I was getting this same issue (main reason why I updated).

I've reset the security credentials, no joy. I tried using the reconfigure script, no joy. I tried following the cmdsubsys.log while applying the CCM configuration and nothing shows there.

I should mention, the hanging waiting for verification isn't the only issue I had. Initially when I tried to update via the website, it just hung, and I went in manually and updated it from the host itself. So maybe there's something deeper that's an issue and applying configs where it hangs is just a symptom of a much larger problem.

I'm still fairly new to Nagios XI, so any assistance would be greatly appreciated.

Re: Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 9:40 am
by scottwilkerson
sounds like either the nagios user is expired

Code: Select all

chage -l nagios
or cron isn't running

Code: Select all

service crond status
If both of them look good (feel free to post results), I'd also like to see the following

Code: Select all

ps -ef|grep nagiosxi
and

Code: Select all

tail -100 /var/log/cron|grep nagiosxi

Re: Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 11:01 am
by bwelker
Oh boy do I feel stupid :oops: . I thought I had made this so the account wouldn't expire...Guess I didn't!

I guess that brings up one other quick question. If I have no idea what that password is, and I reset it, is there some where in Nagios XI I need to set it as well? I assume there is, but I'm still pretty terrible at navigating around the Nagios XI interface...

Re: Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 12:02 pm
by scottwilkerson
bwelker wrote:Oh boy do I feel stupid :oops: . I thought I had made this so the account wouldn't expire...Guess I didn't!

I guess that brings up one other quick question. If I have no idea what that password is, and I reset it, is there some where in Nagios XI I need to set it as well? I assume there is, but I'm still pretty terrible at navigating around the Nagios XI interface...
Usually the nagios user doesn't have a login password set. Nagios XI will not need to know this at all if one is setup.

Re: Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 12:07 pm
by bwelker
Well that's good to know. I modified the user to have the password never expire and seems to be working. For reference I used the code below to do so.

Code: Select all

sudo chage -I -1 -m 0 -M 99999 -E -1 nagios
You may close this, thanks so much for the help! Sorry for being a bit stupid on this one :)

Re: Waiting for Configuration Verification

Posted: Tue Sep 12, 2017 12:10 pm
by scottwilkerson
bwelker wrote:Well that's good to know. I modified the user to have the password never expire and seems to be working. For reference I used the code below to do so.

Code: Select all

sudo chage -I -1 -m 0 -M 99999 -E -1 nagios
You may close this, thanks so much for the help! Sorry for being a bit stupid on this one :)
No worries, glad it is resolved. Locked