Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SPC
- IntelliJ
- tomcat
- plugin
- window
- vaadin
- Python
- xPlatform
- Sqoop
- mapreduce
- es6
- SQL
- MSSQL
- Java
- hadoop
- Spring
- mybatis
- R
- table
- Kotlin
- Express
- 보조정렬
- JavaScript
- react
- 공정능력
- GIT
- NPM
- SSL
- Eclipse
- Android
Archives
- Today
- Total
DBILITY
tomcat cache error 본문
반응형
the background cache eviction process was unable to free 10 percent of the cache for context[] - consider increasing the maximum size of the cache.
캐시가 부족하다는 오류가 발생했다.
conf안의 context.xml에 다음과 같이(Resouces) 추가한다.다른 블로그에 보니 100M이라고 한다.
또 MultiPart 업로드 관련 오류도 발생했다. Context부분에 path와 allowCasualMultipartParsing을 추가했다.
<Context path="/" allowCasualMultipartParsing="true" >
<!-- Default set of monitored resources. If one of these changes, the -->
<!-- web application will be reloaded. -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
-->
<!-- Uncomment this to enable Comet connection tacking (provides events
on session expiration as well as webapp lifecycle) -->
<!--
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
-->
<Resources cachingAllowed="true" cacheMaxSize="102400"/>
</Context>
반응형
'was' 카테고리의 다른 글
linux apache 동시 접속 수 확인 (0) | 2023.02.13 |
---|---|
tomcat version information command (0) | 2022.08.09 |
tomcat 8 ip based access control used RemoteAddrFilter (0) | 2021.09.27 |
tomcat HttpServletRequet.getRemoteAddr get ipv4 (0) | 2021.09.23 |
linux tomcat heap size (0) | 2021.08.31 |
Comments