not found on this server
Posted: Thu Jan 20, 2011 5:31 pm
Hello,
Installed Nagios 3.2.3 and plugins 1.4.15 on Fedora 14.
Followed these instructions successfully:
http://nagios.sourceforge.net/docs/3_0/ ... edora.html
Start of the web interface as nagiosadmin is successful, but clicking on any of the links gives:
for "Tactical Overview" for example.
These are informative:
http://nagios.sourceforge.net/docs/2_0/installweb.html
http://support.nagios.com/forum/viewtop ... criptalias
http://support.nagios.com/forum/viewtop ... criptalias
but didn't resolve the problem.
Relevant entries from my httpd.conf file:
Authenication as nagiosadmin seems to be okay, but the web interface can't seem to find the CGI scripts. Any help you can provide will be appreciated.
Joel
Installed Nagios 3.2.3 and plugins 1.4.15 on Fedora 14.
Followed these instructions successfully:
http://nagios.sourceforge.net/docs/3_0/ ... edora.html
Start of the web interface as nagiosadmin is successful, but clicking on any of the links gives:
Code: Select all
Not Found
The requested URL /nagios/cgi-bin/tac.cgi was not found on this server.These are informative:
http://nagios.sourceforge.net/docs/2_0/installweb.html
http://support.nagios.com/forum/viewtop ... criptalias
http://support.nagios.com/forum/viewtop ... criptalias
but didn't resolve the problem.
Relevant entries from my httpd.conf file:
Code: Select all
DocumentRoot "/usr/local/nagios/share"Code: Select all
Alias /nagios "/usr/local/nagios/share"
<Directory "/usr/local/nagios/share">
Options FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
AuthName "Nagios Access"
AuthType Basic
AuthUserFile /usr/local/nagios/etc/htpasswd.users
Require valid-user
</Directory>
Code: Select all
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"
<Directory "/usr/local/nagios/sbin">
Options ExecCGI
AllowOverride AuthConfig
Order allow,deny
Allow from all
AuthName "Nagios Access"
AuthType Basic
AuthUserFile /usr/local/nagios/etc/htpasswd.users
Require valid-user
</Directory>
Joel