Your request was not processed in a timely manner...
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Your request was not processed in a timely manner...
Hello, I have the following error:
Your request was not processed in a timely manner. It may still execute, as the server may be temporarily busy.
It occurs while making some actions through Nagios XI web-interface (like restart the "Monitoring Engine", or "Schedule forced immediate check").
It seems, that error started after forcing Nagios to use SSL (followed "Configuring SSL with Nagios XI" document).
This solution didn't help - https://support.nagios.com/forum/viewto ... 4&start=30. I think because I have updated version/
My system:
CentOS release 6.4
Nagios XI 2014R1.3
Thanks for any suggestions.
Your request was not processed in a timely manner. It may still execute, as the server may be temporarily busy.
It occurs while making some actions through Nagios XI web-interface (like restart the "Monitoring Engine", or "Schedule forced immediate check").
It seems, that error started after forcing Nagios to use SSL (followed "Configuring SSL with Nagios XI" document).
This solution didn't help - https://support.nagios.com/forum/viewto ... 4&start=30. I think because I have updated version/
My system:
CentOS release 6.4
Nagios XI 2014R1.3
Thanks for any suggestions.
Re: Your request was not processed in a timely manner...
Is opening an email support ticket an option for you? If it is, please send us the "profile.zip" to [email protected].
Type "Your request was not processed in a timely manner..." in the email's subject field, and place a URL link to this forum post in the email's body. Thanks!
Admin->System Profile->Download Profile
Type "Your request was not processed in a timely manner..." in the email's subject field, and place a URL link to this forum post in the email's body. Thanks!
Admin->System Profile->Download Profile
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Re: Your request was not processed in a timely manner...
Unfortunately, the license is EXPIRED (ON 2014-08-26).
So, probably, I can't send e-mails to support.
So, probably, I can't send e-mails to support.
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Re: Your request was not processed in a timely manner...
By the way, when commenting this line in /etc/httpd/conf.d/nagiosxi.conf:
Redirect permanent / https://<my_hostname>/
everything is Ok - I receive "Command was processed successfully" (either connecting with HTTP or with HTTPS).
Redirect permanent / https://<my_hostname>/
everything is Ok - I receive "Command was processed successfully" (either connecting with HTTP or with HTTPS).
Re: Your request was not processed in a timely manner...
Do you have "https" in the "Program RUL" under the "System Settings" and "Server protocol" = https under the "Global CCM Settings"? Run the following command and show the output:
Start a running tail on the apache error log:
then try restarting the monitoring engine from the web UI. Wait for a few seconds, stop the tail (Ctrl + c), copy/paste the output of the tail.
Are you using a proxy?
Code: Select all
grep https /usr/local/nagiosxi/html/config.inc.phpCode: Select all
tail -f /var/log/httpd/error_logAre you using a proxy?
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Re: Your request was not processed in a timely manner...
Hello,
"Global CCM Settings" - Server Protocol is HTTPS.
"Program URL" is also HTTPS.
I don't have PROXY.
But running the suggested command, I see FALSE in output:
# grep https /usr/local/nagiosxi/html/config.inc.php
// force http/https
$cfg['use_https']=false;
tail -f /var/log/httpd/error_log
NO OUTPUT while running "Monitoring Engine Restart". Also no output while running "Schedule a forced immediate check". In both cases I've got "Your request was not processed in a timely manner..."
"Global CCM Settings" - Server Protocol is HTTPS.
"Program URL" is also HTTPS.
I don't have PROXY.
But running the suggested command, I see FALSE in output:
# grep https /usr/local/nagiosxi/html/config.inc.php
// force http/https
$cfg['use_https']=false;
tail -f /var/log/httpd/error_log
NO OUTPUT while running "Monitoring Engine Restart". Also no output while running "Schedule a forced immediate check". In both cases I've got "Your request was not processed in a timely manner..."
Re: Your request was not processed in a timely manner...
Take a look at this link for a fix you can try and see if it resolves your issue.
https://support.nagios.com/wiki/index.p ... ely_manner
Let us know if it works or not.
https://support.nagios.com/wiki/index.p ... ely_manner
Let us know if it works or not.
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Re: Your request was not processed in a timely manner...
Hello
tried that, but it didn't help.
tried that, but it didn't help.
Re: Your request was not processed in a timely manner...
Edit the following file
Change this line from
to
Save the file and restart nagios and apache by running
See if that fixes the issue.
Code: Select all
/usr/local/nagiosxi/html/config.inc.phpCode: Select all
$cfg['use_https']=false; Code: Select all
$cfg['use_https']=true;Code: Select all
service httpd restart
service nagios restartBe sure to check out our Knowledgebase for helpful articles and solutions!
-
goldmund84
- Posts: 42
- Joined: Mon Jan 06, 2014 6:48 am
Re: Your request was not processed in a timely manner...
Done:
cat /usr/local/nagiosxi/html/config.inc.php | grep https
// force http/https
$cfg['use_https']=true;
But unfortunately with no result.
cat /usr/local/nagiosxi/html/config.inc.php | grep https
// force http/https
$cfg['use_https']=true;
But unfortunately with no result.