Your request was not processed in a timely manner....

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Your request was not processed in a timely manner....

Post by [email protected] »

So I haven't messed with XI lately as we still have our Core instance up. Well it was time to get working again on XI to finish the transition. We had database issues because our VM had run out of space. We fixed all that and got the web front end back up and running. The issue we're now facing is after I make a config change or even if I just want to force an immediate check I get the error 'your request was not processed in a timely manner.......'

After some googling I found an older issue, but looks like the new code fixes it. Took the snippet of the code to make sure we still don't need to change it.

/usr/local/nagiosxi/html/includes/utilsx.inc.php

Code: Select all

        //Updated to 2 on 4/10/2013, support for 1 is removed in curl 7.28.1 and PHP 5.4 - MG - Updated 6/4/2013 to take into account older systems -SW
        $curl_version_info=curl_version();
        if ($curl_version_info['version_number'] >= 465921 || version_compare(phpversion(), '5.4', '>'))
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,2);
                else
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,1);
                //proxy options - added 10/12/2011 -MG
                if($use_proxy)
                {
            //Added ability to turn off HTTPPROXYTUNNEL from proxy component -SW
                        curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, get_option('proxy_tunnel',1));
                        curl_setopt($ch, CURLOPT_PROXY, get_option('proxy_address'));
                        curl_setopt($ch, CURLOPT_PROXYPORT, get_option('proxy_port'));
                        curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
                        //use auth credentials if specified
                        if(have_value(get_option('proxy_auth')))
                                curl_setopt($ch, CURLOPT_PROXYUSERPWD, get_option('proxy_auth'));

                }
One thing I did notice was at the top the check marks 'Active host checks are disabled' and 'Active service checks are disabled'. However, when I click on them then click actions I get the same error. What should I try next?
slansing
Posts: 7698
Joined: Mon Apr 23, 2012 4:28 pm
Location: Travelling through time and space...

Re: Your request was not processed in a timely manner....

Post by slansing »

Are you currently forcing SSL on the XI server? If so you will need to follow what the last post shows here to resolve that:

http://support.nagios.com/forum/viewtop ... 129#p98353
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Re: Your request was not processed in a timely manner....

Post by [email protected] »

slansing wrote:Are you currently forcing SSL on the XI server? If so you will need to follow what the last post shows here to resolve that:

http://support.nagios.com/forum/viewtop ... 129#p98353
ok that's done. Still same issue.

Restarted nagios
restarted httpd

do I need to do anything else?
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Your request was not processed in a timely manner....

Post by lmiltchev »

Let's rule out config errors.

Go to the Core Config Manager->Tools->Write Config Files->Write (check for errors)->Verify (check for errors).
Be sure to check out our Knowledgebase for helpful articles and solutions!
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Re: Your request was not processed in a timely manner....

Post by [email protected] »

lmiltchev wrote:Let's rule out config errors.

Go to the Core Config Manager->Tools->Write Config Files->Write (check for errors)->Verify (check for errors).
Write config files: Success no errors
Verify Configuration: Success No errors
Restart Nagios: Success

No issues there.
sreinhardt
-fno-stack-protector
Posts: 4366
Joined: Mon Nov 19, 2012 12:10 pm

Re: Your request was not processed in a timely manner....

Post by sreinhardt »

Since it hasn't been asked.
What OS and XI version?
Can you submit an immediate check in the Core interface?
If you could run the following and report the results please.

Code: Select all

ll /usr/local/nagios/var/ -d
ll /usr/local/nagios/var/rw -d
ll /usr/local/nagios/var/rw/
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Re: Your request was not processed in a timely manner....

Post by [email protected] »

sreinhardt wrote:Since it hasn't been asked.
What OS and XI version?
Can you submit an immediate check in the Core interface?
If you could run the following and report the results please.

Code: Select all

ll /usr/local/nagios/var/ -d
ll /usr/local/nagios/var/rw -d
ll /usr/local/nagios/var/rw/
CentOS 6.5
XI version 2014R1.0
Yes we can submit an immediate check using Nagios Core

First one: ll /usr/local/nagios/var/ -d
drwxrwxr-x 6 nagios nagios 4096 Jun 20 16:22 /usr/local/nagios/var/

second: ll /usr/local/nagios/var/rw -d
drwxrwsr-x 2 nagios nagcmd 4096 Jun 19 16:52 /usr/local/nagios/var/rw


third: ll /usr/local/nagios/var/rw/
total 4
-rw-r--r-- 1 apache nagcmd 29 Jun 19 16:52 nagios.cmd
srw-rw---- 1 nagios nagcmd 0 Jun 17 14:42 nagios.qh

Ran these again today to make sure it was on the right host as I had most of our nagios instance open. Looks like I might have ran them on either our prod instance.
Last edited by [email protected] on Fri Jun 20, 2014 3:25 pm, edited 1 time in total.
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Re: Your request was not processed in a timely manner....

Post by [email protected] »

So what next?
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Your request was not processed in a timely manner....

Post by lmiltchev »

Run the following commands and show us the output in code wraps:

Code: Select all

ps -ef | grep [c]md
service crond status
tail -50 /var/log/cron
tail -50 /var/log/mysqld.log
chage -l nagios
chage -l apache
Start the following command in the CLI:

Code: Select all

tail -f /usr/local/nagiosxi/var/cmdsubsys.log >> /tmp/debug.txt
then go to the web UI, and try scheduling an immediate check on a service. Wait for a couple of minutes, stop the tail (Ctrl + c), and post the "debug.txt" file that was generated by running the above command in the "/tmp/" directory.
Be sure to check out our Knowledgebase for helpful articles and solutions!
[email protected]
Posts: 38
Joined: Fri Mar 28, 2014 9:27 am

Re: Your request was not processed in a timely manner....

Post by [email protected] »

lmiltchev wrote:Run the following commands and show us the output in code wraps:

Code: Select all

ps -ef | grep [c]md
service crond status
tail -50 /var/log/cron
tail -50 /var/log/mysqld.log
chage -l nagios
chage -l apache
Start the following command in the CLI:

Code: Select all

tail -f /usr/local/nagiosxi/var/cmdsubsys.log >> /tmp/debug.txt
then go to the web UI, and try scheduling an immediate check on a service. Wait for a couple of minutes, stop the tail (Ctrl + c), and post the "debug.txt" file that was generated by running the above command in the "/tmp/" directory.
Whoops, ran the first set of commands on our prod instance. Too many connections open yesterday. Edited my previous reply.

Code: Select all

ps -ef | grep [c]md
nagios   16580 16570  0 16:25 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1
nagios   16588 16580  0 16:25 ?        00:00:00 /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php

Code: Select all

service crond status
crond (pid  4428) is running...

Code: Select all

tail -50 /var/log/cron
Jun 20 16:22:01 ias-monitor-dev CROND[15353]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15354]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15355]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15356]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15357]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15358]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:22:01 ias-monitor-dev CROND[15359]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15818]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15819]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15820]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15821]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15822]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15823]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15824]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:23:01 ias-monitor-dev CROND[15828]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cleaner.php > /usr/local/nagiosxi/var/cleaner.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16191]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16192]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16193]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16194]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16195]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16196]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16197]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:24:01 ias-monitor-dev CROND[16199]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cleaner.php > /usr/local/nagiosxi/var/cleaner.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16572]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/deadpool.php > /usr/local/nagiosxi/var/deadpool.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16573]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cleaner.php > /usr/local/nagiosxi/var/cleaner.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16574]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/dbmaint.php > /usr/local/nagiosxi/var/dbmaint.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16575]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16576]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16577]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16578]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16579]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16580]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16581]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Jun 20 16:25:01 ias-monitor-dev CROND[16582]: (root) CMD (LANG=C LC_ALL=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg --lock-file /var/lock/mrtg/mrtg_l --confcache-file /var/lib/mrtg/mrtg.ok)
Jun 20 16:26:01 ias-monitor-dev CROND[17017]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17018]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17019]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17020]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17021]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17022]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17023]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:26:01 ias-monitor-dev CROND[17024]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cleaner.php > /usr/local/nagiosxi/var/cleaner.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17481]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17482]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/nom.php > /usr/local/nagiosxi/var/nom.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17483]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdataproc.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17484]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/reportengine.php > /usr/local/nagiosxi/var/reportengine.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17485]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/cleaner.php > /usr/local/nagiosxi/var/cleaner.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17486]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17487]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log 2>&1)
Jun 20 16:27:01 ias-monitor-dev CROND[17480]: (nagios) CMD (/usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2>&1)
Looks like quite a few errors

Code: Select all

 tail -50 /var/log/mysqld.log
140617 14:37:45 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:45 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_servicestatus' is marked as crashed and last (automatic?) repair failed
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:46 [ERROR] /usr/libexec/mysqld: Table './nagios/nagios_logentries' is marked as crashed and should be repaired
140617 14:37:47 [Note] /usr/libexec/mysqld: Normal shutdown

140617 14:37:47 [Note] Event Scheduler: Purging the queue. 0 events
140617 14:37:47  InnoDB: Starting shutdown...
140617 14:37:50  InnoDB: Shutdown completed; log sequence number 0 44233
140617 14:37:50 [Note] /usr/libexec/mysqld: Shutdown complete

140617 14:37:50 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
140617 14:42:11 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
140617 14:42:11  InnoDB: Initializing buffer pool, size = 8.0M
140617 14:42:11  InnoDB: Completed initialization of buffer pool
140617 14:42:11  InnoDB: Started; log sequence number 0 44233
140617 14:42:11 [Note] Event Scheduler: Loaded 0 events
140617 14:42:11 [Note] /usr/libexec/mysqld: ready for connections.
Version: '5.1.73'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  Source distribution
140617 14:42:12 [Note] /usr/libexec/mysqld: Normal shutdown

140617 14:42:12 [Note] Event Scheduler: Purging the queue. 0 events
140617 14:42:12  InnoDB: Starting shutdown...
140617 14:42:17  InnoDB: Shutdown completed; log sequence number 0 44233
140617 14:42:17 [Note] /usr/libexec/mysqld: Shutdown complete

140617 14:42:17 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
140617 14:42:18 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
140617 14:42:18  InnoDB: Initializing buffer pool, size = 8.0M
140617 14:42:18  InnoDB: Completed initialization of buffer pool
140617 14:42:18  InnoDB: Started; log sequence number 0 44233
140617 14:42:18 [Note] Event Scheduler: Loaded 0 events
140617 14:42:18 [Note] /usr/libexec/mysqld: ready for connections.
Version: '5.1.73'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  Source distribution

Code: Select all

chage -l nagios
Last password change                                    : May 12, 2014
Password expires                                        : never
Password inactive                                       : never
Account expires                                         : never
Minimum number of days between password change          : 0
Maximum number of days between password change          : 99999
Number of days of warning before password expires       : 7

Code: Select all

chage -l nagios
Last password change                                    : May 12, 2014
Password expires                                        : never
Password inactive                                       : never
Account expires                                         : never
Minimum number of days between password change          : 0
Maximum number of days between password change          : 99999
Number of days of warning before password expires       : 7
[root@ias-monitor-dev ~]# chage -l apache
Last password change                                    : May 12, 2014
Password expires                                        : never
Password inactive                                       : never
Account expires                                         : never
Minimum number of days between password change          : -1
Maximum number of days between password change          : -1
Number of days of warning before password expires       : -1

Code: Select all

^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@..
PROCESSED 0 COMMANDS
name";s:10:"act2-mtv-3";s:3:"cmd";i:96;s:10:"start_time";i:1403296263;}
COMMAND DATA: a:3:{s:9:"host_name";s:10:"act2-mtv-3";s:3:"cmd";i:96;s:10:"start_time";i:1403296263;}
CMDARR:
Array
(
    [host_name] => act2-mtv-3
    [cmd] => 96
    [start_time] => 1403296263
)
CORE CMD: SCHEDULE_HOST_CHECK;act2-mtv-3;1403296263
SUBMITTING A NAGIOSCORE COMMAND...
....................................................^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@
PROCESSED 1 COMMANDS
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@.
PROCESSED 0 COMMANDS
~
Locked