Answers for "kill services on port"

34

kill port

sudo kill -9 `sudo lsof -t -i:9001`
Posted by: Guest on May-03-2020
1

kill port

netstat -aon | findstr 8080
taskkill /f /pid 77777
Posted by: Guest on January-27-2020
0

kill process on port

lsof -i:3000           // Change 3000 to whatever your port is!
sudo kill 9 <PID>      // Change <PID> to the Pid number the above command returns
Posted by: Guest on October-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language