LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   error 404 requested URL /statusmeldung was not found on this server (https://www.linuxquestions.org/questions/linux-newbie-8/error-404-requested-url-statusmeldung-was-not-found-on-this-server-4175429671/)

lawassi 09-29-2012 07:35 PM

error 404 requested URL /statusmeldung was not found on this server
 
pls can somebody help me here?

Iam trying to get the Apache Server Information and
in puting http://localhost/statusmeldung
It give an error:
error 404 requested URL /statusmeldung was not found on this server
here is my info.conf :

ServerRoot "/home/lawassi/int10"
Listen 80
ServerName my.intranet1.local
DocumentRoot "/home/lawassi/int10/sites/intranet1/htdocs"
User www-data
Group www-data
Include /etc/apache2/mods-available/dir.load
Include /etc/apache2/mods-available/dir.conf

Include /etc/apache2/mods-available/mime.load
Include /etc/apache2/mods-available/mime.conf

DirectoryIndex index.html

<IfDefine INFOZEIGEN>
LoadModule status_module /usr/lib/apache2/modules/mod_status.so
LoadModule info_module /usr/lib/apache2/modules/mod_info.so
<Location statusmeldung>
SetHandler server-satatus
</Location>
</IfDefine>

bathory 09-30-2012 01:29 AM

Quote:

<Location statusmeldung>
SetHandler server-satatus
You need to add a leading slash in the Location definition. Also you have a typo (server-satatus instead of server-status). So try these:
Code:

<Location /statusmeldung>
SetHandler server-status

Regards

lawassi 09-30-2012 02:30 AM

thank u very mch
 
it works good now.
It was my stuped mistake.
thank you.
landry.


All times are GMT -5. The time now is 06:11 PM.