访问vmware虚拟机
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还在 Ubuntu 客户操作系统上运行 vmware。以下是我连接的步骤:
在 Ubuntu 客户操作系统中打开终端并运行
ifconfig
,您应该看到类似这样的内容:然后,您应该能够使用分配的 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: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.