問:如何在 JVM 上啟動 JMX 以透過 jconsole 進行存取?
A:要使用jconsole 啟用JMX 進行遠程訪問,請按照以下步驟操作:
-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9010 -Dcom.sun.management.jmxremote.rmi.port=9010 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
java -Dcom.sun.management.jmxremote \ -Dcom.sun.management.jmxremote.port=9010 \ -Dcom.sun.management.jmxremote.local.only=false \ -Dcom.sun.management.jmxremote.authenticate=false \ -Dcom.sun.management.jmxremote.ssl=false \ -jar Notepad.jar
以上是如何使用 JConsole 啟用遠端 JMX 存取?的詳細內容。更多資訊請關注PHP中文網其他相關文章!