![]()
Manual Configuration for Tomcat version 5.x ,6.x ,7.x and 8.x (Windows Environment):
1. Right click on Tomcat7w.exe running in Task Bar and Select Configure.
2. In Java tab add the following in Java options field.
-Dcom.sun.management.jmxremote.port=8090
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
3. Restart the Tomcat Service.
Manual Configuration for JBOSS (Windows Environment) :
Version 4.1
For version 4.1 no need of any manual configuration.
Version 7.1
1. Add content in standalone.conf.bat in WebManagement\bin folder.
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.port=8089"
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.authenticate=false"
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.ssl=false"
set "JAVA_OPTS=%JAVA_OPTS% -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Xbootclasspath/p:../modules/org/jboss/logmanager/main/jboss-logmanager-1.2.2.GA.jar -Xbootclasspath/p:../modules/org/jboss/logmanager/log4j/main/jboss-logmanager-log4j- 1.0.0.GA.jar -Xbootclasspath/p:../modules/org/apache/log4j/main/log4j-1.2.16.jar"
set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.system.pkgs=org.jboss.logmanager"
2. Restart the JBOSS Service.
Version 6.1
1. Add content in standalone.conf.bat in WebManagement\bin folder.
set "JAVA_OPTS=%JAVA_OPTS% -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Xbootclasspath/p:../modules/system/layers/base/org/jboss/logmanager/main/jboss-
logmanager-1.5.4.Final-redhat-1.jar"
set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.system.pkgs=org.jboss.byteman,org.jboss.logmanager"
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.port=8083"
set "JAVA_OPTS=%JAVA_OPTS% - Dcom.sun.management.jmxremote.authenticate=false"
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.ssl=false"
2.Restart the JBOSS Service.
Manual configuration for Apache version 2.x and 1.3
1. Enable module "LoadModule status_module modules/mod_status.so" by removing the comment in http.conf file which is present in Apache Software Foundation\Apache2.x\conf directory.
2.Add the following content in same :
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Allow from all
</Location>
ExtendedStatus on
3.Restart the server.
( Make sure that the URL <server-ip>: <port> /server-status is accessible . Eg : 172.16.11.37:8082/server-status)