Configure Apache "server-status" page

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

  1. Search for the line "LoadModule status_module modules/mod_status.so"
  2. Uncomment the line. [Remove the '#' at the beginning of the line "LoadModule status_module modules/mod_status.so" ]
  3. 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

                    • Troubleshooting - Apache Server

                      Troubleshooting - Apache Server monitor If you're encountering issues in Apache Server monitor in Applications Manager, follow these steps to diagnose and resolve the problem: 1. Verify the Server is an Apache Server: Open Command Prompt on the ...
                    • Pre-requisite for monitoring apache server metrics

                      The Apache mod_status module enables users to view detailed performance metrics of the Apache web server. You must enable and configure the mod_status correctly in the Apache configuration file to get performance metrics from Apache and view the data ...
                    • Troubleshooting - Apache Solr

                      To troubleshoot Apache Solr Monitor, follow the below steps: Verify Accessibility: Ensure that the Apache Solr instance is accessible from the Applications Manager server. Check Host and Port: Make sure you’ve entered the correct host and port number ...
                    • 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 ...