访问vmware虚拟机

发布于 2024-10-11 07:52:22 字数 229 浏览 3 评论 0原文

我在 vmware 中使用 Windows 7 作为主机,使用 Ubuntu 桌面作为来宾操作系统,所有设置均按照 vmware 的建议进行设置,并且 Windows 7 有 VPN 来访问互联网。

在Ubuntu中,我安装了rails并运行unicorn服务器,所以我可以在虚拟机内访问localhost:8080,它工作正常。

现在我需要从主机访问独角兽服务器。如何设置对本地unicorn服务器的访问?谢谢

I have windows 7 as host and Ubuntu desktop as guest OS in vmware, all settings set as recommended by vmware, and windows 7 has VPN to access to internet.

In Ubuntu I've installed rails and run unicorn server, so i can go to localhost:8080 inside virtual machine, it works fine.

Now I need access to unicorn server from host machine. How to set access to local unicorn server? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

っ左 2024-10-18 07:52:22

我还在 Ubuntu 客户操作系统上运行 vmware。以下是我连接的步骤:

在 Ubuntu 客户操作系统中打开终端并运行 ifconfig,您应该看到类似这样的内容:

eth0      Link encap:Ethernet  HWaddr 00:0c:29:4f:81:83  
      inet addr:172.16.198.178  Bcast:172.16.198.255  Mask:255.255.255.0
      inet6 addr: fe80::20c:29ff:fe4f:8183/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:53 errors:0 dropped:0 overruns:0 frame:0
      TX packets:72 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:12627 (12.6 KB)  TX bytes:9883 (9.8 KB)

然后,您应该能够使用分配的 IP 从 Windows 主机操作系统进行连接到 Ubuntu 客户操作系统。在此示例中,它将是:http://172.16.198.178:8080

如果这不起作用,则可能设置了防火墙。检查 Windows 主机操作系统上的 Windows 防火墙 设置,并检查 iptables 是否没有阻止 Ubuntu 端的流量。

I also run vmware with a Ubuntu guest OS. Here are the steps I take to connect:

Open terminal in Ubuntu guest OS and run ifconfig, you should see something like this:

eth0      Link encap:Ethernet  HWaddr 00:0c:29:4f:81:83  
      inet addr:172.16.198.178  Bcast:172.16.198.255  Mask:255.255.255.0
      inet6 addr: fe80::20c:29ff:fe4f:8183/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:53 errors:0 dropped:0 overruns:0 frame:0
      TX packets:72 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:12627 (12.6 KB)  TX bytes:9883 (9.8 KB)

Then, you should be able to connect from your windows host OS using the IP assigned to Ubuntu Guest OS. In this example it would be: http://172.16.198.178:8080

If that doesn't work, then there might be a firewall set up. Check the Windows Firewall settings on your Windows Host OS, and also check that iptables is not blocking traffic on the Ubuntu side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文