Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 98 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
share|improve this answer
1  
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
1  
In order to be able to save your edits to the hosts file, launch Notepad by right clicking it and choosing "Run As Administrator" – Noah Sussman Jun 13 '12 at 21:53
12  
Ugh, also remember that if you're using IE8 in the VM, that it is a POS and that you have to put the http:// at the beginning of the IP address, unlike all other modern browsers, just putting 10.0.2.2:8000/app won't work! Took me 30 minutes of screwing around to figure this out. – Ted Naleid Jul 11 '12 at 15:42
1  
this works for Windows 7 but not for Windows XP :/ – daveoncode Nov 8 '12 at 12:31
1  
um, POS is short hand for "piece of $#!+" – hasen j Jan 19 at 14:38
show 6 more comments

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.

share|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
2  
you are a lovely man Nick Haddad .. May good things happen you today.. – wmitchell Jul 16 '12 at 13:50
Love this solution. Note that on some older Windows you won't be able to use whatever.local unless you install Bonjour. – Marc-André Lafortune May 14 at 14:49

.....

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
share|improve this answer
Probably wrong in windows7. – macm Oct 20 '12 at 0:10

I'm running Virtual Box on Mac OS X. Using Virtual Box to test IE on Windows 7, etc.

Go to IE in Virtual Box and access localhost via 10.0.2.2 for localhost, or 10.0.2.2:3000 for localhost:3000.

I kept Network settings as NAT, no need for bridge as suggested above in my case. There is no need to edit any config files.

share|improve this answer
Glad some found this useful. But to save yourself all this hassle, I personally am using browserstack.com to test out stuff in whatever browser I like. – Jonathan Lin Dec 28 '12 at 4:21

You need to edit your hosts file on your Windows Virtual machine the same way you do for your local host machine:

C:\WINDOWS\system32\drivers\etc\hosts

And link your virtual hosts to 10.0.2.2, If you are just using localhost then replace

127.0.0.1 localhost with 10.0.2.2 localhost

For example

10.0.2.2 localhost 10.0.2.2 local.site1.com 10.0.2.2 local.site2.com

share|improve this answer

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.

share|improve this answer
can you give any advice on how to set up / find out the IPs on a OSX machine? – honestor May 30 '12 at 11:05
? not sure which address your after - the computer's address can be found via system prefs / network -> IP Address. That is basically the address that the macine will answer to externally. Internally localhost:80 should do for osx's apache server - while MAMP will uses localhost:8888 by default. – orionrush Jun 5 '12 at 1:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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