How to activate JMX on a JVM for access with jconsole?
|
|
The relevant documentation can be found here: http://java.sun.com/javase/6/docs/technotes/guides/management/agent.html Start your program with following parameters:
For instance like this:
-Dcom.sun.management.jmxremote.local.only=false is not necessarily required but without it, it doesn't work on Ubuntu. The error would be something like this:
see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6754672 Also be careful with -Dcom.sun.management.jmxremote.authenticate=false which makes access available for anyone, but if you only use it to track the JVM on your local machine it doesn't matter. |
|||||
|
|
Note, Java 6 in the latest incarnation allows for jconsole to attach itself to a running process even after it has been started without JMX incantations. If that is available to you, also consider jvisualvm as it provides a wealth of information on running processes, including a profiler. |
|||
|
|
|
Run your java application with the following command line parameters:
It is important to use the -Dcom.sun.management.jmxremote.ssl=false parameter if you don't want to setup digital certificates on the jmx host. If you started your application on a machine having IP address 192.168.0.1, open jconsole, put 192.168.0.1:8855 in the Remote Process field, and click Connect. |
|||
|
|