Reputation: 79
I got a Rails application (running on Thin server) running on my Ubuntu VM, how can I be able to access it from my Windows 7 OS? I already have the VM bridge option enable. I tried using the IP address from my Ubuntu VM directly to my windows 7 browser, but nothing happens, is there a way to do that?
Upvotes: 1
Views: 106
Reputation: 54882
Yes, you can:
ifconfig | grep inet
on Ubuntu)Then in your Windows 7 (or other computer in your local network, your smartphone for instance) you can open a browser and go to your VM's IP address + port (usually 3000).
So, the address to put in your browser might look like this:
http://192.168.1.5:3000/
Upvotes: 1