在虚拟盒中安装客户操作系统的虚拟网络设置

在虚拟盒中安装客户操作系统的虚拟网络设置

我是 Linux 新手。我刚刚使用 Virtual Box 在 Vista 中安装了 Ubuntu。一切运行正常。现在我想建立一个带有客户操作系统 (ubuntu) 的客户端服务器 (虚拟) 网络,以连接到安装在 ubuntu 中的 cassandra 服务器。

有人可以指导我这一点吗?

干杯

答案1

这更像是一个 Virtualbox 问题 - 请阅读http://www.virtualbox.org/manual/ch06.html

您要么需要 NAT 网络并指定要转发的端口,要么需要完整的桥接网络。

答案2

菜单>运行>输入cmd.exe

cd "C:\Program Files\Sun\xVM VirtualBox\"

VBoxManage.exe setextradata "NAMEVM" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/Cassandrah/HostPort" 9160

VBoxManage.exe setextradata "NAMEVM" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/Cassandra/GuestPort" 9160

VBoxManage.exe setextradata "NAMEVM" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/Cassandra/Protocol" TCP

casandra 客户端现在可以连接到本地主机。

或者使用“桥接网络”并直接连接到 ubuntu

相关内容