Requested URL /cacti was not found on this server
Moderators: Developers, Moderators
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Requested URL /cacti was not found on this server
I installed cacti 1.1.28 with debian 9.
after installation does not open.
the message appears:
"Requested URL / cacti was not found on this server"
help please
after installation does not open.
the message appears:
"Requested URL / cacti was not found on this server"
help please
Re: Requested URL /cacti was not found on this server
Have you made sure that apache has been restarted?
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Re: Requested URL /cacti was not found on this server
yes, I even do the initial configurationmarkv wrote:Have you made sure that apache has been restarted?
Re: Requested URL /cacti was not found on this server
That does not make sense since the install is beneath the /cacti/ in /cacti/install/
Can you describe the steps you have taken so far?
Can you describe the steps you have taken so far?
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Re: Requested URL /cacti was not found on this server
after installation step 1 localhost / install ----> ok ----> step 2 login: admin password admin -----> failed ---> Requested URL / cacti was not found on this server "markv wrote:That does not make sense since the install is beneath the /cacti/ in /cacti/install/
Can you describe the steps you have taken so far?
Re: Requested URL /cacti was not found on this server
Whilst performing the install, did you change the site location as your using cacti as the root folder not the normal /cacti/ subfolder.
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Re: Requested URL /cacti was not found on this server
I did not understand, can you explain it again?markv wrote:Whilst performing the install, did you change the site location as your using cacti as the root folder not the normal /cacti/ subfolder.
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Re: Requested URL /cacti was not found on this server
I made the installation following this sitecezario2009 wrote:I did not understand, can you explain it again?markv wrote:Whilst performing the install, did you change the site location as your using cacti as the root folder not the normal /cacti/ subfolder.
https://www.tecmint.com/install-cacti-w ... nd-ubuntu/
Re: Requested URL /cacti was not found on this server
paulgevers maintains a backport of cacti for ubuntu/debian (his signature has the details if you click on his name). Using that would seem to have been easier to install cacti as it does most of this work for you.
However, in your case, you will also need to check that the configuration file has the correct path set for $url_path in the include/config.php file. This will most likely be set to "/cacti/" and needs changing to just "/"
ie, from:
To:
However, in your case, you will also need to check that the configuration file has the correct path set for $url_path in the include/config.php file. This will most likely be set to "/cacti/" and needs changing to just "/"
ie, from:
Code: Select all
/* set the $url_path to point to the default URL of your cacti
* install ex: if your cacti install as at
* http://serverip/cacti/ this would be set to /cacti/.
*/
$url_path = '/cacti/';
Code: Select all
/* set the $url_path to point to the default URL of your cacti
* install ex: if your cacti install as at
* http://serverip/cacti/ this would be set to /cacti/.
*/
$url_path = '/';
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
Re: Requested URL /cacti was not found on this server
I can verify that in 0.8.8a, the configuration file was updated to default to the /config/ format instead of just /
However, I am also going to raise a bug/feature request to allow the setting of that value during an installation since a manual install can place it anywhere and I can't see (at the moment) any point during the install that updates or sets this. At the very least, it should point out the issue during the installation by checking the path of the /cacti/install folder matches the url_path with the URL actually used.
However, I am also going to raise a bug/feature request to allow the setting of that value during an installation since a manual install can place it anywhere and I can't see (at the moment) any point during the install that updates or sets this. At the very least, it should point out the issue during the installation by checking the path of the /cacti/install folder matches the url_path with the URL actually used.
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
-
- Posts: 11
- Joined: Mon Dec 11, 2017 7:26 am
Re: Requested URL /cacti was not found on this server
Thank you very much for the help, it's working now!markv wrote:paulgevers maintains a backport of cacti for ubuntu/debian (his signature has the details if you click on his name). Using that would seem to have been easier to install cacti as it does most of this work for you.
However, in your case, you will also need to check that the configuration file has the correct path set for $url_path in the include/config.php file. This will most likely be set to "/cacti/" and needs changing to just "/"
ie, from:To:Code: Select all
/* set the $url_path to point to the default URL of your cacti * install ex: if your cacti install as at * http://serverip/cacti/ this would be set to /cacti/. */ $url_path = '/cacti/';
Code: Select all
/* set the $url_path to point to the default URL of your cacti * install ex: if your cacti install as at * http://serverip/cacti/ this would be set to /cacti/. */ $url_path = '/';
Re: Requested URL /cacti was not found on this server
I have created issue #1146 - Configuration option URL_PATH should be updated during install to try and get a fix started for this.
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
Who is online
Users browsing this forum: No registered users and 0 guests