Cannot connect to JMX/RMI server with VisualVM for no apparent reason

16,309

The comment from @Klara saved my day !! fixed my connection to the jstad

jstatd -J-Djava.security.policy=all.policy -J-Djava.rmi.server.hostname=hostname-goes-here &
Share:
16,309
Admin
Author by

Admin

Updated on June 20, 2022

Comments

  • Admin
    Admin almost 2 years

    I have my OSGi application launching with the following command in my remote machine:

    java -Dcom.sun.management.jmxremote \
      -Dcom.sun.management.jmxremote.port=8080 \
      -Dcom.sun.management.jmxremote.local.only=false \
      -Dcom.sun.management.jmxremote.authenticate=false \
      -Dcom.sun.management.jmxremote.ssl=false \
      -jar bin/felix.jar
    

    And in my local machine I have VisualVM from which I try to connect to the remote JVM instance:

    enter image description here

    enter image description here

    enter image description here

    What am I missing?

    Thanks!