JMX端口动态分配

发布于 2024-11-30 16:11:27 字数 220 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与往事干杯 2024-12-07 16:11:27

使用 RMI 连接器可能是一种方式,因为您可以指定代理的 URL。

如果您需要它,您可以使用以下方式以编程方式创建 RMI 注册表:

java.rmi.registry.LocateRegistry.createRegistry(port);

您可能会发现以下不相关的示例很有用: 使用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:

java.rmi.registry.LocateRegistry.createRegistry(port);

You may find following unrelated sample useful: Connecting Through Firewall Using JMX

心碎无痕… 2024-12-07 16:11:27

我不认为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文