远程方法调用端口正在使用中

2022-09-03 08:27:10

我用RMI创建了一个服务器,客户端类型的程序。但是,每当我从命令提示符启动rmiregistry后运行服务器时,都会引发已在使用的端口错误。只有我启动了rmiregistry。我已经从netstat检查过了。

服务器代码:

public class Server implements Runnable, Linker{


private static Server server = null;
    private static Linker l = null;
    private String name = null;
    public Server(){}

    public void setName(String name){
        this.name = name;
    }
    public String getName(){
        return name;               
    }  
    public void run(){
        while(!("Andy").equalsIgnoreCase(name)){

        }
    }
    public static void createStub(){
        try{
            server = new Server();
            l = (Linker) UnicastRemoteObject.exportObject(server, 1099);

            Registry registry = LocateRegistry.getRegistry();
            registry.bind("Link", l);
            System.out.println("Ready");
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }                       
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        createStub();
        Thread t = new Thread(server);

    }
}

客户端代码:

public class Client implements Runnable{


private Scanner sc = new Scanner(System.in);
    private Linker linker = null;

    public void loadStub(){
        try{
            Registry registry = LocateRegistry.getRegistry(1099);
            linker = (Linker) registry.lookup("Link");

        }catch(Exception e){

        }
    }
    public void run(){
        String ip = null;
        while(sc.hasNext()&&!(ip = sc.nextLine()).equalsIgnoreCase(":q")){
            try {
                linker.setName(ip);
            } catch (RemoteException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }


    public static void main(String...args){
        Client client = new Client();
        client.loadStub();
        Thread t = new Thread(client);
        t.start();
    }
}

例外:

java.rmi.server.ExportException: Port already in use: 1099; nested exception is: 
java.net.BindException: Address already in use: JVM_Bind

答案 1

如果您使用的是 macOS,则可以停止端口跟踪,如下所示:

您需要找到PID_number的第一件事:lsof -i :1099

然后杀死那个端口:kill -9 PID_number


答案 2

在其进程中使用端口 1099,因此您无法在自己的进程中使用它。也:rmiregistry

  1. 通过(首选)在同一过程中启动注册表。LocateRegistry.createRegistry()
  2. 将对象导出到其他端口。
  3. 在 1099 以外的其他端口上启动 。rmiregistry