up vote 12 down vote favorite
9
share [g+] share [fb]

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?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 23 down vote accepted

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|improve this answer
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 '09 at 16:00
This worked on my macos with virtual box. Thanks a lot it made my day! – marcgg Nov 24 '09 at 12:41
feedback

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|improve this answer
hmm, for some reason the gui (on my machine) doesn't have this option! – hasen j Aug 11 '09 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 '09 at 15:59
feedback

.....

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   localhost  mydomain mydomain.com
link|improve this answer
feedback

actually user477494's answer is in principle correct. I've applied the same logic in other environments (osx host - virtual XP) and that does the trick. I did have to cycle the host LAMP stack to get the IP address and apache port to resolve, but once I'd figured that out, I was laughing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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