서버를 실행했을때 아래와 같은 오류가 뜰 경우
port를 종료하여 해결할 수 있다.
Port * required by Tomcat v* Server at localhost is already in use.
netstat -ano | findstr 포트번호
taskkill /f /pid 프로세스아이디
netstat -ano | findstr 8080
taskkill /f /pid 15500
https://standout.tistory.com/244
그러나 cmd를 관리자로 열기로 연뒤에 명령해도 종료가 되지않을때가 있는데
그땐 eclipse에서 서버의 port의 숫자를 직접바꿔주는 방법으로 피해가자. (예: 8080 -> 8081)
서버클릭 - overview - ports - http - port number 수정
재실행 - 완료
'IDE > Eclipse' 카테고리의 다른 글
Eclipse SVN 첫커밋하기 (0) | 2023.10.31 |
---|---|
Eclipse SVN checkout 프로젝트소스 받기 (0) | 2023.10.27 |
STS 프로젝트 .war 자르파일로 export하기 (0) | 2023.07.21 |
eclipse Tomcat 톰캣서버 연결하기 (0) | 2023.06.08 |
Server Tomcat v9.0 Server at localhost failed to start. (0) | 2023.06.08 |