반응형
IntelliJ 사용 중 포트 중복이 발생하여 정상적으로 기동 불가, 대상 PORT를 사용하는 프로세스 KILL
Error running 'WAS': Unable to open debugger port (127.0.0.1:8080): java.net.BindException "Address already in use: JVM_Bind"
* 해당 포트를 사용하고 있는 프로세스 찾기
C:\ netstat -ano|findstr "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 16000
TCP [::]:8080 [::]:0 LISTENING 16000
* PID를 이용한 프로세스 찾기
C:\ tasklist | findstr "16000"
java.exe 16000 Console 1 150,604 K
* PID를 이용한 프로세스 종료
C:\ taskkill /PID 16000 /F
성공: 프로세스(PID 16000)가 종료되었습니다.
* find, findstr 설명
[윈도우 find, findstr 명령어] https://realforce111.tistory.com/10
* TASKKILL 설명
[taskkill) 명령어로 프로그램 종료하기] http://blog.naver.com/PostView.nhn?blogId=kingreddrake&logNo=221481408335&parentCategoryNo=&categoryNo=13&viewDate=&isShowPopularPosts=true&from=search
반응형
'Dev > ETC' 카테고리의 다른 글
[MariaDB] CentOS7에 MariaDB 10.3 오프라인 설치 (1) | 2020.10.26 |
---|---|
[CentOS] profile, bashrc (0) | 2020.10.26 |
[CentOS] WIFI(네트워크) ON/OFF (0) | 2020.09.28 |
CentOS - Docker 디스크 사용량 증가 (0) | 2020.07.24 |
IntelliJ Zoom 기능 활성화 (0) | 2020.03.09 |