vote up 2 vote down star
1

I have a local test/development server (http, of course), listening to port 8000,

I'm working on Linux, so to test the page on IE6/7/8 etc I run a virtual machine using virtual box; I also need to see how it look on firefox in a windows environment (fonts for instance are different).

In my real machine, I open the website simply using the URL http://localhost:8000, how do I address this localhost from the virtual machine?

Right now my workaround is to use the IP address. Any better ideas?

flag

2 Answers

vote up 3 vote down check

Googling turned this up: http://agaric.com/note/localhost-from-a-virtualbox-xp-install-ubuntu

It suggests using IP: http://10.0.2.2, and it worked for me.

So, I edited the hosts file, C:\windows\system32\drivers\etc\hosts, and added this entry:

10.0.2.2   outer
link|flag
I did notice in ipconfig (Windows in VirtualBox) that the default router for my VirtualBox is that IP address... so that makes sense to me. – benc Aug 12 at 16:00
This worked on my macos with virtual box. Thanks a lot it made my day! – marcgg Nov 24 at 12:41
vote up 0 vote down

You most likely have your virtual machines networking set to NAT. If you set your networking to Bridged you should be able to access your host machine by its hostname.

See the VirtualBox documentation for instructions on how to set your networking setttings to Bridged.

link|flag
hmm, for some reason the gui (on my machine) doesn't have this option! – hasen j Aug 11 at 18:14
what version are you using? I found that on Mac, some of the base manual docs are completely different. – benc Aug 12 at 15:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.