Port 8005 required by Tomcat v8.5 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
간단한 코드 실행해보려 했는데, 바로 에러 발생
해결 방법
1. CMD(명령 프롬프트)창 관리자 권한으로 실행
Windows Key → CMD 검색 → 명령 프롬프트 앱 마우스로 우클릭 → 자세히 → 관리자 권한으로 실행
2.
netstat -ano | findstr 8005
taskkill /F /pid ?????
netstat -ano | findstr 8005
출처
https://devlimk1.tistory.com/151
+ 강의 교재
'AI Bootcamp > Spring' 카테고리의 다른 글
[Spring] java.lang.IllegalStateException: 자식 컨테이너를 시작하는 중 오류 발생 (0) | 2022.03.21 |
---|---|
[Spring] Server Tomcat v8.5 Server at localhost failed to start. (0) | 2022.03.20 |
[Spring] Spring Apache Tomcat Server 설정 (0) | 2022.03.20 |
[Spring] Could not publish server configuration for Tomcat v8.5 Server at localhost.Multiple Contexts have a path of "/app". (0) | 2022.03.20 |
[Spring] 실습 5일차_AOP (0) | 2022.03.20 |