Artisan Error: Failed to listen on localhost:8000

后端 未结 11 793
清酒与你
清酒与你 2021-01-30 08:58

I\'m having problem starting my laravel installation. Whenever I type in the terminal \'php artisan serve\' it responses me an error:

Fai

11条回答
  •  醉话见心
    2021-01-30 09:21

    Are there any other services running on port 8000?

    You can use this command on Windows:

    netstat -aon | more
    

    or on Linux / OSX

    sudo netstat -plnt
    

    to see what services are running. Then disable the service that is running on port 8000 or use another port.

提交回复
热议问题