Answers for "kill 8000 port"

5

mac error that port is already in use

sudo lsof -t -i tcp:8000 | xargs kill -9
Posted by: Guest on May-30-2020
0

stop port in use 8000

kill -9 $(lsof -i TCP:8000 | grep LISTEN | awk '{print $2}')
Posted by: Guest on December-19-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language