nugawiki

./categories/server

Tomcat 리소스 캐시 공간 부족

업데이트 2026-07-21 조회수

증상

The background cache eviction process was unable to free [10] percent of the cache
for Context [] - consider increasing the maximum size of the cache.

조치 (context.xml / Context)

<Resources
  cachingAllowed="true"
  cacheMaxSize="102400"
  cacheObjectMaxSize="512"
/>
속성의미
cacheMaxSize캐시 총 한도 (KB, 기본 10240)
cacheObjectMaxSize단일 객체 상한 (KB). cacheMaxSize/20 초과 불가
rm -rf $CATALINA_HOME/work/*
$CATALINA_HOME/bin/shutdown.sh && $CATALINA_HOME/bin/startup.sh

./comments