Answers for "laravel development serve doesn't stop"

PHP
0

laravel development serve doesn't stop

here is what i do press ctrl+ c

> lsof -i :8000
to check if the port is busy or not if any process is listening to the port 8000 it will be displayed with port id

> sudo  kill -9 [PID]
kill the process that listen to that port id

run lsof agin

> sudo lsof -i 8000
Posted by: Guest on February-11-2022

Browse Popular Code Answers by Language