I'm trying to discover remote running processes on Java Mission Control. So that, I'm using the following attributes to start the JVM:
-Dcom.sun.management.jmxremote.port=50099 \
-Dcom.sun.management.jmxremote.rmi.port=50099 \
-Dcom.sun.management.jmxremote.authenticate=false \
-Dcom.sun.management.jmxremote.ssl=false \
-Dcom.sun.management.jmxremote.autodiscovery=true \
-Dcom.sun.management.jdp.name=MyCluster/MyJVM Teste \
-Dcom.sun.management.jdp.address=224.0.23.178 \
-Dcom.sun.management.jdp.port=50099
In Java Mission Control, the JDP preferences are set to:
- Multicast group to join: 224.0.23.178
- Multicast port: 50099
- Heart Beat Timeout(s): 12
But it is not working for me. Does anybody know what I'm doing wrong?