RMI服务器使用错误的IP地址

时间:2016-05-11 13:01:59

标签: java networking rmi

当我的网卡连接到网络A时,我正在启动我的RMI服务器。运行我的客户端按预期成功并打印" Hello World"。一旦我将网络连接更改为网络B(无需重新启动我的RMI服务器!),我就无法再连接到服务器了。 服务器和客户端始终在同一主机上运行,​​因此使用localhost地址就足够了。

服务器:

public class HelloImpl extends UnicastRemoteObject implements Hello {

    public HelloImpl() throws RemoteException {
    }

    public String sayHello() {
        return "Hello world!";
    }

    public static void main(String args[]) throws RemoteException {
        Registry registry = LocateRegistry.createRegistry(3128);
        registry.rebind("HelloServer", new HelloImpl());
    }
}

客户端:

public class HelloClient {

    public static void main(String arg[]) throws Exception{
        Registry registry=LocateRegistry.getRegistry("localhost", 3128);;
        Hello result = (Hello) registry.lookup("HelloServer");
        System.out.println(result.sayHello());
    }

}

例外是:

HelloClient exception: Connection refused to host: 192.168.169.136; nested exception is: 
    java.net.ConnectException: Connection timed out: connect

这是指我在连接到网络A时分配的IP地址。注册表查找按预期工作,只有对result.sayHello()的调用失败,上面有例外。

如何告诉RMI将localhost用于所有内容(而不仅仅是注册表)?

1 个答案:

答案 0 :(得分:2)

在导出任何远程对象(包括注册表)之前,在服务器JVM上将系统属性java.rmi,server.hostname设置为127.0.0.1。