Support the ongoing development of Laravel.io →
posted 9 years ago
Installation
Last updated 1 year ago.
0

Go to " homestead/scripts/homestead.rb "

and set

Configure Port Forwarding To The Box

config.vm.network "forwarded_port", guest: 80, host: 1050

And you done .

Last updated 1 year ago.
0

If you are running any host process in the port 8000 you could kill it and re-run the vagrant up command.

Today I had the same issue and I search the process with the netstat command and searching the PID process I killed it and follow the process.

In my case was a VirtualBox process that I killed and solve my issue.

Hope it helps you.

Last updated 1 year ago.
0

Thanks a lot for your answers !!

Last updated 1 year ago.
0

Really helpfull!! thanks

Last updated 1 year ago.
0

I've done this:

  • Grabbed the PID of the process listening on port 8000: lsof -i tcp:8000
  • kill -9 <PID>
0

I encountered this when running per-project homestead instances.

Looking at the homestead.rb file in the latest v2 version there is a port override, so rather than modifying the Vagrantfile or the homestead.rb file you can just provide the new ports in the Homestead.yaml e.g.

ports:
- guest: 80
  host: 8001

- guest: 443
  host: 44301

- guest: 3306
  host: 33061

- guest: 5432
  host: 54321
Last updated 8 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

SeLoRBIS selorbis Joined 7 Sep 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.