Open a command prompt and enter the following command
netstat -a -o -n
run the list by port until you find port 3000 and you see the process ID. Then run
taskkill /F /PID (yourprocessID)
there is another easy way to do this in one command
FOR /F "tokens=4 delims= " %%P IN ('netstat -a -n -o ^| findstr :3000') DO TaskKill.exe /PID %%P
if you use Windows 7 U, you may need tokens=5
, use tokens with caution for different OS.
source share