I am new to Java and I\'m facing a problem in connecting a Remote Host to the JVisualVM
.
I\'ve searched the Internet and followed all the steps mentioned th
To connect to a remote VM you have to start that remote VM with specific options:
java
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=9000
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
class
After the VM is started, go to your VisualVM and do the following:
More details on the Java Monitoring and Management Platform can be found here.