본문 바로가기

Backend/Spring | SpringBoot

Tomcat 에러

반응형

1. Failed to initialize connector [Connector[HTTP/1.1-포트번호]] 오류

org.apache.catalina.core.StandardService.initInternal Failed to initialize connector
[Connector[HTTP/1.1-포트번호]]

보통은 지정한 포트가 충돌날때 일어나는 에러라고함

 

Sol)

# cmd
# 포트번호를 사용중인지 확인 가능
netstat -ano | findstr [포트번호]

# 사용중이라면 사용중이 서비스를 종료하거나 포트번호를 변경해야 한다.
# 서비스 종료
taskkill /f /pid <pid번호>

 

2. Tomcat 캐시 부족 경고

org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [~] to the
cache because there was insufficient free space available after evicting expired cache entries
- consider increasing the maximum size of the cache

org.apache.catalina.webresources.Cache.getResource [~]에 위치한 리소스를 웹 애플리케이션
[/]을(를) 위한 캐시에 추가할 수 없습니다. 왜냐하면 만료된 캐시 엔트리들을 없애버린 이후에도 여유
공간이 충분하지 않기 때문입니다. 캐시의 최대 크기를 증가시키는 것을 고려해 보십시오.

 

Sol) 다음 파일 수정

   <!-- context.xml파일 -->
   ...
    <WatchedResource>...</WatchedResource>
	<Resources cacheMaxSize="100000" cachingAllowed="true"/>
    ...

 

반응형