Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mashiro's avatar

127.0.0.1:8000 working, homestead.app is not working

Hi Guys, i suddenly can't access my websites. I am using windows 7 and laravel 5.2 2 days ago everything was fine. But now i can only access 127.0.0.1:8000, the homestead.app is not working. vagrant up and vagrant ssh is working as usual too.

Here is my homestead.yaml file

---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: C:/Users/Ming/.ssh/id_rsa.pub

keys: - C:/Users/Ming/.ssh/id_rsa

folders: - map: D:/Web Design/Code to: /home/vagrant/Code

sites: - map: tourtravel.app to: /home/vagrant/Code/TourTravel/public - map: homestead.app to: /home/vagrant/Code/Laravel/public

databases: - homestead

Here is my hosts file.


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

127.0.0.1 tourtravel.app 127.0.0.1 homestead.app

Any guidance on how to troubleshoot this issue, would be helpful. Thank you so much.

0 likes
5 replies
EventFellows's avatar

What have you changed 2 days ago? If it did work before i would start your debugging in what you changed.

martindilling's avatar

Try using the ip set in your homestead config

192.168.10.10    homestead.app
mashiro's avatar

@EventFellows how to start debugging in Laravel? I think I didn't change anything. Yesterday it happens, after restart my computer several times it works. But today its not working anymore

alexidro's avatar

I also experienced similar issues on Windows 10, but never on Windows 7.

In my case, after many attempts it turned out that was an IPv6 related issue, or at least disabling it resolved the problem (it also speed up all network related stuff). Try if this is your case also.

Or maybe have you also upgraded Virtualbox in the past days? Lately I'm encountering an issue with Virtualbox 5.0.20r1 on my Thinkpad running Debian Jessie: the homestead VM is working but isn't responding to network anymore after the host resumes from suspend, so i have to"homestead reload" every time (fortunately it's quite fast and I don't go suspend too often, but It never happened before with previous Virtualbox versions).

Anyway I would run an "homestead refresh --provision" before wasting much time trying to figure it out (backup your databases first if you have valuable data in them).

Please or to participate in this conversation.