jconsole에 대해 JMX 원격 액세스를 활성화하는 방법
질문: Java에서 JMX 원격 액세스를 활성화하려면 어떻게 해야 합니까? jconsole을 사용하여 가상 머신(JVM)에 연결하시겠습니까?
답변: 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 원격 액세스를 활성화하고 JVM에 연결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!