Answers for "identify and stop the process that's listening on port 8089 or configure this application to listen on another 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 server on port mac

//Find Pid
sudo lsof -i :3000
//kill
kill -9 <pid>
Posted by: Guest on May-13-2021

Code answers related to "identify and stop the process that's listening on port 8089 or configure this application to listen on another port in mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language