Answers for "kill a port windwos"

50

kill port

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

kill a process by looking up the port in windows

//Open command prompt and run the following commands

C:\Users\username>netstat -o -n -a | findstr 0.0:3000
   TCP    0.0.0.0:3000      0.0.0.0:0              LISTENING       3116

C:\Users\username>taskkill /F /PID 3116
//here 3116 is the process ID
Posted by: Guest on September-20-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language