Error: This rapid response URL has expired and can no longer
Error: This rapid response URL has expired and can no longer
Hi
with 5.5.4 upgrade we now getting "Error: This rapid response URL has expired and can no longer be used." on emails only couple of hours old.
How to fix this problem (we have to be able to respond to emails up to 1 week old)?
Thank you
with 5.5.4 upgrade we now getting "Error: This rapid response URL has expired and can no longer be used." on emails only couple of hours old.
How to fix this problem (we have to be able to respond to emails up to 1 week old)?
Thank you
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Error: This rapid response URL has expired and can no lo
This was added in 5.5.0 to expire after 30 minutes.
We have had other requests to make this adjustable and that feature will be added in 5.6.0 when it is released.
Until then, you can adjust the time with the following command to increase the value to 1 week
If you have a upgraded system still using postgresql
Or mysql
We have had other requests to make this adjustable and that feature will be added in 5.6.0 when it is released.
Until then, you can adjust the time with the following command to increase the value to 1 week
If you have a upgraded system still using postgresql
Code: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|psql nagiosxi nagiosxiCode: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|mysql -pnagiosxi nagiosxiRe: Error: This rapid response URL has expired and can no lo
scottwilkerson wrote:This was added in 5.5.0 to expire after 30 minutes.
We have had other requests to make this adjustable and that feature will be added in 5.6.0 when it is released.
Until then, you can adjust the time with the following command to increase the value to 1 week
If you have a upgraded system still using postgresqlOr mysqlCode: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|psql nagiosxi nagiosxiCode: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|mysql -pnagiosxi nagiosxi
How to check which DB our XI is using?
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Error: This rapid response URL has expired and can no lo
run the following
If any of the returned lines say
then it is postgresql otherwise mysql
Code: Select all
grep dbtype /usr/local/nagiosxi/html/config.inc.phpCode: Select all
"dbtype" => 'pgsql',Re: Error: This rapid response URL has expired and can no lo
Hiscottwilkerson wrote:run the followingIf any of the returned lines sayCode: Select all
grep dbtype /usr/local/nagiosxi/html/config.inc.phpthen it is postgresql otherwise mysqlCode: Select all
"dbtype" => 'pgsql',
Did not quite work that way:
[root@fikc-nagxiprod01 ~]# grep dbtype /usr/local/nagiosxi/html/config.inc.php
$cfg['dbtype'] = ''; // this setting is no longer used - use settings below
"dbtype" => 'pgsql',
"dbtype" => 'mysql',
"dbtype" => 'mysql',
//if (!defined('CFG_ONLY')) { require_once(dirname(__FILE__).'/db/'.$cfg['dbtype '].'.inc.php'); }
[root@fikc-nagxiprod01 ~]# grep dbtype => 'pgsql' /usr/local/nagiosxi/html/config.inc.php
grep: =: No such file or directory
[root@fikc-nagxiprod01 ~]# grep dbtype => 'mysql' /usr/local/nagiosxi/html/config.inc.php
grep: =: No such file or directory
[root@fikc-nagxiprod01 ~]#
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Error: This rapid response URL has expired and can no lo
this line exists as I mentioned, so you would run the followingdlukinski wrote:"dbtype" => 'pgsql',
Code: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|psql nagiosxi nagiosxiRe: Error: This rapid response URL has expired and can no lo
This is now resolved. Thank youscottwilkerson wrote:this line exists as I mentioned, so you would run the followingdlukinski wrote:"dbtype" => 'pgsql',
Code: Select all
echo "INSERT INTO xi_options (name, value) VALUES ('rr_valid_link_timeout', '604800');"|psql nagiosxi nagiosxi
Re: Error: This rapid response URL has expired and can no lo
I am glad your issue has been resolved!
I am closing this topic.
I am closing this topic.
Be sure to check out our Knowledgebase for helpful articles and solutions!