更改默认 RMI 端口 (Java)

发布于 2024-07-21 22:28:18 字数 59 浏览 5 评论 0原文

如何更改默认 RMI 端口 (1099)。 它可以作为 JVM 参数或通过编码,这并不重要。 谢谢。

How can I change the default RMI port (1099). It could be as JVM parameter or via coding, it doesn´t matter. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

对岸观火 2024-07-28 22:28:18

您可以在命令行上指定它。 来自 RMI 教程

默认情况下,注册表在端口 1099 上运行。要在不同端口上启动注册表,请在命令行上指定端口号。 不要忘记取消设置 CLASSPATH 环境变量。

Microsoft Windows:

start rmiregistry 2001

Solaris OS or Linux:

rmiregistry 2001 &

在您的代码中,您使用 LocateRegistry.getRegistry(String host, int port) 覆盖以按主机名和端口查找注册表,如 LocateRegistry.getRegistry(String host, int port) 覆盖com/docs/books/tutorial/rmi/client.html" rel="noreferrer">创建客户端程序 教程部分。 (这同样适用于实现您的服务器。)

You can specify it on the command line. From the RMI Tutorial:

By default, the registry runs on port 1099. To start the registry on a different port, specify the port number on the command line. Do not forget to unset your CLASSPATH environment variable.

Microsoft Windows:

start rmiregistry 2001

Solaris OS or Linux:

rmiregistry 2001 &

In your code you use the LocateRegistry.getRegistry(String host, int port) override to locate the registry by hostname and port, as explained in the Creating a Client Program section of the tutorial. (The same applies when implementing your server.)

寒江雪… 2024-07-28 22:28:18

您可以在导出远程对象时指定自己的端口,通过 super(port, ...) 或 exportObject(remote, port, ...) 取决于您是否扩展 UnicastRemoteObject。 如果扩展 Activatable,则会出现类似的带有端口号的 super() 重载。 如果您使用它,您可以在命令行上指定注册表的端口,如果您使用它,则可以通过 LocateRegistry.createRegistry() 指定。

You can specify your own port when exporting your remote object, either via super(port, ...) or exportObject(remote, port, ...) depending on whether you do or don't extend UnicastRemoteObject. If you extend Activatable there are similarly super() overloads with a port number. You can specify the Registry's port on the command line if you use that, otherwise via LocateRegistry.createRegistry() if you use that.

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