Answers for "how to stop identify and stop the process that's listening on port for macos"

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

Code answers related to "how to stop identify and stop the process that's listening on port for macos"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language