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

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

Navigate to <ORACLE_HOME>/user_projects/domains/<domain_name>/config/fmwconfig/components/OHS/<server_component_name>/httpd.conf fileand uncomment the following line:
  1. LoadModule status_module "${PRODUCT_HOME}/modules/mod_status.so"

Step 2 - Add/Modify 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 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 below steps 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 Oracle HTTP server after performing the above mentioned steps and check if the below URL is accessible from Applications Manager installed machine.

                  New to ADSelfService Plus?

                    • Related Articles

                    • 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 ...
                    • How to resolve 403 Forbidden error when accessing Apache Server-status Page?

                      If you are receiving a 403 Forbidden error when trying to access the Apache server-status page, it's likely due to missing or incorrect configurations in your Apache server settings. The server-status page provides valuable information for monitoring ...
                    • How to import certificates for monitoring Oracle database with SSL authentication?

                      For users using Applications Manager version 14250 and below: One-way SSL: (Client authentication disabled) 1. Open the command prompt using 'Run as administrator' option and navigate to the Applications Manager installation directory. 2. Import your ...
                    • Mail Server Monitor - Troubleshooting

                      Common Mail Server Monitor Errors and Troubleshooting Guide 1. Unknown Host Error Description: This error occurs when the mail client cannot resolve the hostname of the mail server to an IP address. The issue typically arises from DNS resolution ...
                    • Oracle Database Server Discovery Fails with an Error Message

                      Error: Failed. Oracle Server is down. Error Message: IO Error: The Network Adapter could not establish the connection Solution 1: The Oracle server is down, please ensure that the server is up and running. Solution 2: The Oracle server is not ...