톰캣 실행 시
org.apache.catalina.webresources.cache.getresource unable to add the resource at
오류는
톰캣에 캐시 메모리가 부족하기 때문에 발생한다.
특별한 설정을 하지 않으면 기본 10240(10MB) 가 디폴트값이다.
캐시를 늘려주는 설정을 하면 된다.
톰캣/conf/context.xml 에
<Resources cachingAllowed="true" cacheMaxSize="102400" />
를 추가해 주면 된다.
'서버설정' 카테고리의 다른 글
리눅스 일반 사용자권한으로 서버 재기동 reboot 시 자동 실행 설정하기 (0) | 2023.06.13 |
---|---|
리눅스 vi 색상 변경 - :colorscheme (0) | 2023.06.12 |
윈도우 Apache Tomcat 버전별 자바 버전 수동 설정 (0) | 2023.03.08 |
톰캣 외부 폴더 context 설정 및 jsp 실행 안되게 하기 (0) | 2018.02.23 |
OWASP ZAP 체크 - X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks. (2) | 2018.02.19 |