Encuentre y mate el proceso en un puerto específico Windows
# find the process
netstat -ano | findstr :<PORT>
# kill the process
taskkill /PID <PID> /F
Modern Moose
# find the process
netstat -ano | findstr :<PORT>
# kill the process
taskkill /PID <PID> /F