小编典典

如何在我的 JVM 上激活 JMX 以使用 jconsole 进行访问?

all

如何在 JVM 上激活 JMX 以使用 jconsole 进行访问?


阅读 94

收藏
2022-05-23

共1个答案

小编典典

相关文档可以在这里找到:

http://java.sun.com/javase/6/docs/technotes/guides/management/agent.html

使用以下参数启动您的程序:

-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

-Dcom.sun.management.jmxremote.local.only=false不一定需要,但没有它,它在 Ubuntu
上不起作用。错误将是这样的:

01 Oct 2008 2:16:22 PM sun.rmi.transport. customer .TCPTransport$AcceptLoop executeAcceptLoop
WARNING: RMI TCP Accept-0: accept loop for ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=37278] throws
java.io.IOException: The server sockets created using the LocalRMIServerSocketFactory only accept connections from clients running on the host where the RMI remote objects have been exported.
    at sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:89)
    at sun.rmi.transport. customer .TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:387)
    at sun.rmi.transport. customer .TCPTransport$AcceptLoop.run(TCPTransport.java:359)
    at java.lang.Thread.run(Thread.java:636)

http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6754672

还要小心-Dcom.sun.management.jmxremote.authenticate=false哪个使任何人都可以访问,但是如果您只使用它来跟踪本地机器上的
JVM,那没关系。

更新

在某些情况下,我无法访问服务器。如果我也设置了这个参数,这个问题就得到了修复:-Djava.rmi.server.hostname=127.0.0.1

2022-05-23