Configure "/server-status" page for IBM HTTP server

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 "mod_status.co" module in the Target IBM HTTP server

Navigate to <IBM_HOME>/HTTPServer/conf/httpd.conf file and uncomment the following line:
  1. LoadModule status_module modules/mod_status.so

Step 2 - Add/Modify the access handler for "/server-status" page

Add the following lines to the configuration file, and if it is already present, modify it according to the context given below:
  1. <Location /server-status>
       SetHandler server-status
       Require all granted
    </Location>
Note that making the above changes will open the "/server-status" handler without any restriction. To restrict the access to Applications manager alone, make the following changes to the configuration file:
<Location /server-status>
   SetHandler server-status
   Require host <hostname_of_apm_installed_machine>
   Require ip <ip_of_apm_installed_machine>
</Location>

Step 3 - Enable Extended Status

Enabling ExtendedStatus is mandatory for monitoring metrics like Request per second, bytes per second, bytes per request etc. If the ExtendedStatus is not enabled, then follow the steps below to enable the extended status.
  1. Locate the line starting with ExtendedStatus in the configuration file.
  2. Uncomment the line and set the status "On".

Step 4 - Restart the server

Restart the target IBM HTTP server after performing the above mentioned steps and check if the below URL is accessible from Applications Manager installed machine.



                  New to ADManager Plus?

                    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 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 ...
                      • 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 ...
                      • IIS Server monitor - Troubleshooting steps

                        Unable to add IIS Server monitor Follow the below given below to add an IIS server monitor in Applications Manager: First, check whether all the prerequisites are done. Check the IIS Server URL is accessible from Applications Manager server. If your ...
                      • Troubleshooting Bad Request and Internal Server error

                        Bad Request & Internal Server error When the server of URL cannot understand the request it has received it responds with a Bad request or a malformed syntax error message. If there is an error in processing the request received by the server, it ...