728x90
열려 있는 포트의 PID 확인
netstat -ano | findstr "PORT"
C:>netstat -ano | findstr 19080
TCP 0.0.0.0:19080 0.0.0.0:0 LISTENING 25436
TCP [::]:19080 [::]:0 LISTENING 25436
TCP [::1]:19080 [::1]:51001 TIME_WAIT 0
프로세스 죽이기
taskkill /f /pid "PID NUMBER"
C:>taskkill /f /pid 25436
성공: 프로세스(PID 25436)가 종료되었습니다.
728x90
반응형
'Linux' 카테고리의 다른 글
[Apache Tomcat] maxPostSize, maxParameterCount (0) | 2024.11.27 |
---|---|
bin/bash^M: bad interpreter: No such file or directory (0) | 2024.08.28 |
Linux 사용중인 Port 죽이기, Port Kill (0) | 2024.08.26 |
XSSFWorkbook 생성 시 FontConfiguration에서 NullPointerException이 발생할 때 (0) | 2023.11.01 |
update glibc to 2.17 for CentOS 6 (0) | 2023.10.27 |