develop/window
윈도우에서 사용 포트 확인 및 프로세스 KILL
참새느님
2018. 11. 7. 13:32
1. 특정 포트가 열려 있는지 확인
netstat -na | findstr "port"
2. 포트 PID 확인
netstat -nao | findstr "port"
3. pid 검색
tasklist | findstr "pid"
4. process kill
taskkill /f /pid "pid"