What port is used by Java RMI connection?(Java RMI 连接使用什么端口?)
问题描述
我可以知道 Java RMI 连接使用哪个端口吗?
May I know what port is used by Java RMI connection?
如果我想使用 RMI 连接将 Java 客户端应用程序连接到 Java 服务器应用程序,我需要在服务器计算机上打开什么端口,以便客户端应用程序可以连接到它?
If I want to connect a Java client application to a Java server application using RMI connection, what port I need to open at the server machine so that the client application can connect to it?
我想在服务器机器上设置防火墙,但不知道应该打开哪个端口.
I want to set up a firewall in the server machine but I don't know which port I should open.
推荐答案
RMI 通常不会在防火墙上工作,因为它使用不可预测的端口(它从 1099 开始,然后使用随机端口运行).
RMI generally won't work over a firewall, since it uses unpredictable ports (it starts off on 1099, and then runs off with a random port after that).
在这些情况下,您通常需要借助 HTTP 上的隧道 RMI,这已经很好地描述了 这里.
In these situations, you generally need to resort to tunnelling RMI over HTTP, which is described well here.
这篇关于Java RMI 连接使用什么端口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java RMI 连接使用什么端口?
基础教程推荐
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01