I\'m trying to open a JMX connection to java application running on a remote machine.
The application JVM is configured with the following options:
Try this, I tested to access JMX inside docker container
-Dcom.sun.management.jmxremote=true -Djava.rmi.server.hostname=localhost -Dcom.sun.management.jmxremote.port=16000 -Dcom.sun.management.jmxremote.rmi.port=16000 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
Then
$ jconsole localhost:16000