본문 바로가기

develop/window

윈도우에서 사용 포트 확인 및 프로세스 KILL

1. 특정 포트가 열려 있는지 확인

netstat -na | findstr "port"

2. 포트 PID 확인
netstat -nao | findstr "port"

3. pid 검색
tasklist | findstr "pid"

4. process kill
taskkill /f /pid "pid"