Configure Apache "server-status" page
This error occurs when Client is denied to access "server-status" page due to the missing configuration in Apache Server. Make below changes in httpd.conf file to fix the issue
Step 1: Load Status Module
- Search for the line "LoadModule status_module modules/mod_status.so"
- Uncomment the line. [Remove the '#' at the beginning of the line "LoadModule status_module modules/mod_status.so" ]
- Leave it as such if it is already uncommented
Step 2: Change access permission for server-status
For Apache (v2.4)
<Location "/server-status">
SetHandler server-status
<RequireAll>
Require all granted
</RequireAll>
</Location>
For Apache (v2.2)
<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
</Location>
Note: Don't forget to restart Apache after doing the steps
New to ADSelfService Plus?
Related Articles
Configure "/server-status" page for Oracle HTTP server
In order to monitor an Oracle HTTP server in Applications Manager, the '/server-status' page must be configured on the target Oracle HTTP server that needs to be monitored. This can be accomplished by following these steps: Step 1 - Enable the ...
Configure "/server-status" page for IBM HTTP server
In order to monitor an IBM HTTP server in Applications Manager, the '/server-status' page must be configured on the target IBM HTTP server that needs to be monitored. This can be accomplished by following these steps: Step 1 - Enable the ...
Configure Apache Server running in WAMP server
Introduction: WampServer refers to a software stack for the Microsoft Windows operating system, consisting of the Apache web server, OpenSSL for SSL support, MySQL database and PHP programming language. It comes as a bundled application with all the ...
Troubleshooting - Apache Server
Condition to determine, if it is 'Apache Server':- Open Command Prompt in Applications Manager machine and execute the following commands and check for the specified outputs. telnet <Apache_Hostname> <Apache_Portnumber> Then a blank screen appears, ...
Pre-requisite for monitoring apache server metrics
Server-status: To monitor apache server, server-status URL should be enabled and access permission should be edited so that the server status url should be accessible from Applications Manager. For more informations Refer here Extended-status: ...