1

我正在尝试连接到已在远程服务器上启动的 RMI 注册表,但一段时间后出现以下异常:

java.rmi.ConnectException: Connection refused to host: *.*.*.*; nested exception is:     
java.net.ConnectException: Connection timed out

通过在服务器上本地运行客户端,一切正常,但我无法远程连接到它;甚至来自telnet。但是,如果我运行

start rmiregistry 1337

我可以从 telnet 远程连接到它。我假设这是我在运行服务器代码时必须设置的东西,但我很难找出它是什么。

这是服务器代码的一部分:

String codeBasePath = "file:/C:/*path*/build/classes";

System.setProperty("java.rmi.server.codebase", codeBasePath);
System.setProperty("java.rmi.server.hostname", *host IP*);

RemoteFileServer server = new FileServer();

Registry registry = LocateRegistry.createRegistry(PORT);

registry.bind(*name*, server);

System.out.println("Server ready");

如果您需要更多信息/代码来帮助我弄清楚,请告诉我。

4

1 回答 1

0

好的,我能想到两个选择

1 - 您是否通过安全策略授予传入连接权限。这一步其实很简单,看这里:rmi run tutorial

2 - 端口可能从操作系统外部关闭。例如,如果您使用的是 linux,您需要从 iptables 打开端口,例如: iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 1099 -j ACCEPT iptables -A OUTPUT -m state -- state NEW -m tcp -p tcp --dport 1099 -j ACCEPT 或者如果您使用 Windows,您可以从防火墙配置它。

如果有什么不清楚的可以问。

于 2013-01-30T08:34:27.897 回答