Answers for "kill the 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
1

kill port from terminal on mac

sudo lsof -i :5955
ex returns: 
COMMAND  PID         USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
node    6957     someuser   28u  IPv6 0x85e555655e4ea0c3      0t0  TCP *:8091 (LISTEN)

sudo kill -9 6957
Posted by: Guest on August-18-2021
-1

kill process on port 3000 mac

kill $(lsof -ti:3000,3001,8080)
Posted by: Guest on January-28-2021

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language