我在编写 jmx 服务器时遇到问题。
我无法绑定到 url [rmi:localhost:9999/server],在以下行中出现异常:
JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:9999/server");
JMXConnectorServer cs = JMXConnectorServerFactory.newJMXConnectorServer(url,null,mbs);
// i get the exception in the next line
cs.start();
顺便说一句,我在 vm 变量中正确定义了端口。