JMX端口动态分配
我有 16 个 Java 进程,它们在一台机器上运行,具有相同的 main 方法和参数。我希望通过 JConsole 远程监控这些。
像 -Dcom.sun.management.jmxremote.port=5000
这样的硬编码端口号将不起作用,因为这些进程使用相同的配置,并且无法使用相同的端口。
JVM 是否可以为 16 个进程中的每一个动态选择不同的端口?
I have 16 Java processes with the same main method and arguments running on one machine. I wish to monitor these remotely thru JConsole.
Hard coding port numbers like -Dcom.sun.management.jmxremote.port=5000
won't work because these processes are using same configuration and they can't work with same port.
Is it possible for the JVM to select a different port dynamically for each of the 16 processes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 RMI 连接器可能是一种方式,因为您可以指定代理的 URL。
如果您需要它,您可以使用以下方式以编程方式创建 RMI 注册表:
您可能会发现以下不相关的示例很有用: 使用JMX通过防火墙连接
Using RMI Connector might be the way as you may specify URL of your agent.
In case you'd need it, you may create RMI registry programatically using:
You may find following unrelated sample useful: Connecting Through Firewall Using JMX
我不认为 oracle jvm 支持这样的东西。唯一可能起作用的是使用端口“0”,它可以在一些与 rmi 相关的东西中启用“动态”端口选择。
I don't think the oracle jvm supports anything like this. the only thing that might work is using the port "0", which enables "dynamic" port selection in some rmi related stuff.