7

Failed to listen on 127.0.0.1:8000 (reason: Address already in use)

 2 years ago
source link: https://www.laravelcode.com/post/failed-to-listen-on-127-0-0-1-8000-reason-address-already-in-use
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Failed to listen on 127.0.0.1:8000 (reason: Address already in use)

  998 views

  7 months ago

Laravel

Laravel is the most popular and open-source MVC type PHP framework to create web application. In a recent time, Laravel even crossed Wordpress in creating new websites.
Laravel application server runs on 8000 port when run php artisan serve command in Terminal in localhost. But sometimes when run this command, if port 8000 is already runs by other service, then it failed to run Laravel application with the error "Failed to listen on 127.0.0.1:8000 (reason: Address already in use)" or Laravel application starts on the port 8001.

There are some ways you can solve this issue. First one is run your Laravel server on other port with the bellow command.

php artisan serve --port 9000

Second way is to kill service which runs on the port 8000 and then run your Laravel application on port 8000. For that first run bellow command, it will display servies which runs on the port.

sudo netstat -plnt
laravel-localhost-address-already-in-use.png

And then find which service runs on the port 8000 and kill that Program name with command. For example, in this here, 23769/php7.2 service is running on the port.

killall -9 php7.2

Or kill service by its PID with command:

sudo kill 23769

Now you can serve your localhost using php artisan serve command again. Thank you reading this article. Please feel free to give your feedback in the bellow comment section.

Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK