Answers for "kill process running on port in mac"

9

kill process running on port mac

sudo lsof -i :3000

kill -9 <PID>
Posted by: Guest on February-11-2021
0

how to see (and kill) what is running on your port +mac

lsof -n -i4TCP:3000  

OR lsof -i:3000

THEN kill -9 "PID"
Posted by: Guest on February-03-2022

Code answers related to "kill process running on port in mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language