Enabled Apache mod_status but server-status was not found on SUSE enterprise 11 SP1

Posted by Charles Yeung on Server Fault See other posts from Server Fault or by Charles Yeung
Published on 2012-02-06T04:15:15Z Indexed on 2013/10/29 22:00 UTC
Read the original article Hit count: 259

Filed under:
|

In /etc/apache2/httpd.conf, I have remove the line of Include mod_status and add the following to the last line,

LoadModule status_module /usr/lib/apache2/mod_status.so
ExtendedStatus On

<Location /server-status>
SetHandler server-status
AllowOverride None
Order Deny,Allow
Deny from all
Allow from all
</Location>

Then I restart Apache, and go to http://HOSTNAME/server-status, but I get the page not found, Did someone know why I get page not found?

Is there any more step needed to do to see the Apache status?

Thanks

© Server Fault or respective owner

Related posts about SLES

Related posts about mod-status