如何从Windows在VM中连接服务器


0

我已经在VirtualBox中安装了Red Hat Server 6.4,并且还安装了Java。我编写了一个套接字程序(端口13,ip = xxxx)。然后在命令提示符下,我执行telnet x.x.x.x 13

但是它没有连接。然后,我在Red Hat中删除了防火墙,但仍然无法连接。有人可以帮帮我吗?您可以在下面找到我的代码:

try {
        socServerSocket = new ServerSocket(SERVICE_PORT);
        while (true) {
            socClient = socServerSocket.accept();                
            RequestProcessor thread = new RequestProcessor(socClient);
            executorService.execute(thread);               

        }

    } catch (Exception e) {

    }

如果将端口更改为1023以上怎么办?例如将端口更改为8085?
凤凰城

@MOPTOH谢谢,我尝试了8085和50001。但无法弄清楚。
Lakmal 2014年

从主机到VM可以ping通吗?
凤凰城

@MOPTOH平xxxx是作品
Lakmal
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.