Remote JMX connection

前端 未结 12 1108
后悔当初
后悔当初 2020-11-29 15:54

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:

  • com
12条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-29 16:18

    To enable JMX remote, pass below VM parameters along with JAVA Command.

        -Dcom.sun.management.jmxremote 
        -Dcom.sun.management.jmxremote.port=453
        -Dcom.sun.management.jmxremote.authenticate=false                               
        -Dcom.sun.management.jmxremote.ssl=false 
        -Djava.rmi.server.hostname=myDomain.in
    

提交回复
热议问题