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

Firefox and Chrome are known to be slow on localhost when IP6 is enabled. In previous versions of Windows, the simplest fix is to comment out this line from the hosts file, as explained in the answer to this question.

::1 localhost

However, as noted in this question, in Windows 7 this line is already commented out:

# localhost name resolution is handled within DNS itself.
#   127.0.0.1 localhost
#   ::1 localhost

Is there an alternative way to disable the ::1 localhost reference in Windows 7?

share|improve this question
6  
BTW I noticed a similar question was moved to SuperUser - I think this is the sort of problem only a programmer would have an answer to, since no one else uses localhost in the browser routinely; so I hope you'll let me leave it here. I posted this question sometime ago to SuperUser and got absolutely nothing. superuser.com/posts/65049 – Herb Caudill Nov 13 '09 at 1:32
Would this not be better suited to superuser.com, as it's not particularly programming related? – Mark Mayo Nov 13 '09 at 1:34
12  
This is an issue that slows down developers if not resolved. I vote to keep it here. Anyone know if this is an issue google / ff is working to resolve? – kiev May 28 '10 at 16:40
2  
I had this issue after upgrading my dev system to Win 7. Spent hours debugging my web server code, trying to figure out why it was so slow delivering documents, before I tracked it down to DNS and realized it was the resolution of localhost. It's definitely a developer question. – Software Monkey Oct 29 '10 at 19:34
1  
IE9 I found was also slow. – Orion Edwards Jul 18 '11 at 20:50
show 1 more comment

5 Answers

up vote 44 down vote accepted

Turns out if you uncomment the 127.0.0.1 line in the hosts file, Chrome goes back to its snappy self on localhost URLs.

# localhost name resolution is handled within DNS itself.
    127.0.0.1 localhost

The hosts file is typically at C:\WINDOWS\system32\drivers\etc\hosts. To edit it in Win7, you'll need to run Notepad as administrator.

share|improve this answer
2  
+1, Thanks for this -- made a huge differece in my loading times (5-10 seconds to <1 second). – Jerad Rose May 19 '10 at 15:58
I presume this also works for FF; or do you have to add local host to the IPV4 only domains for FF. – Software Monkey Oct 29 '10 at 19:32
I have Windows 7, and it works for FF too, which negates the need to disable IPv6 in FF itself. – Moose Factory Nov 25 '10 at 9:56

Still think it belongs on superuser, but looked it up anyway as I'm a FF fan :) It turns out that the slowness is caused by an IPv6 issue with DNS and can easily be resolved by turning IPv6 support off in Firefox while doing localhost testing. To make the change, type

about:config

in the address bar, locate the

network.dns.disableIPv6

setting and double-click on it to set it to true. This does the trick for the Firefox localhost issue on Vista and everything is running fast again.

http://kb.mozillazine.org/Network.dns.disableIPv6 has all the info you probably need - good luck!

share|improve this answer
Great, thanks. I tried this and it works. I'd still like to see a solution for Chrome. – Herb Caudill Nov 13 '09 at 2:48
This is a well known FF issue. I always turn ipv6 off on my local dev machine. – Pure.Krome Jun 1 '10 at 0:00
11  
Personally I prefer adding localhost to network.dns.ipv4OnlyDomains rather than turning off ipv6 entirely. I know it doesn't make much difference now but I can't shake the feeling I'll forget I did this some day and wonder why ipv6 sites won't load – fyjham Jun 1 '10 at 0:17
1  
Tim's approach is better, see kb.mozillazine.org/Network.dns.ipv4OnlyDomains and another review here: dotnetslackers.com/ASP_NET/… – James Baker Dec 9 '10 at 3:58
this didn't work for me :( – bharal Jun 1 '12 at 1:49

I'd do what Tim Schneider mentioned. Also mentioned by this James here: http://theycallmemrjames.blogspot.com/2010/09/firefox-is-really-slow-testing-sites-on.html

"Double-click on ipv4OnlyDomains, and type localhost "

Jay

share|improve this answer

As someone else noted in a different answer - if you have bitdefender, then that will merrily ruin your development experience.

Best to open the bit defender console, enter alt-shift-control-g (which puts it in "game mode") and run from there.

in game mode, bitdefender won't bollocks up your localhost!

share|improve this answer

I ran into a strange issue with only one of my local domains being slow while all the others responded just fine. Couldn't figure out why and finally put ::1 localhost at the bottom underneath my other ::1 something.local and it instantly cleared up, where previously I had it above the other entries. (I'm running OS X 10.8.3)

My final hosts file wound up looking something like this:

127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 something.local
::1 something2.local
::1 something3.local
::1 localhost
fe80::1%lo0 localhost
share|improve this answer

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.