반응형
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 | 31 |
Tags
- springboot
- 스페인여행
- 성북구맛집
- 돈암동맛집
- 방이편백육분삼십성신여대
- JavaScript
- 통영
- tomcat7
- ubuntu자바설치
- 통영여행
- gradle
- 통영에어비앤비
- 통영예쁜카페
- 파이썬
- 꼴뚜기회
- 뚝섬역맛집
- 국가직
- 한남동맛집
- npm
- 영화추천
- 성신여대맛집
- 한성대맛집
- 서울숲누룽지통닭구이
- 방이편백육분삼십
- ELK
- react
- 퇴사후공무원
- 성신여대편백집
- 공무원
- 자바스크립트에러처리
Archives
- Today
- Total
코린이의 기록
[Tomcat] memory leak 본문
반응형
웹 어플리케이션 개발 중
다음과 같은 톰캣에러가 발생하였다.
1 2 3 4 5 6 7 8 9 | 57 Aug 27, 2018 11:16:31 AM org.apache.catalina.core.StandardContext startInternal 58 SEVERE: One or more listeners failed to start. Full details will be found in the appropriate container log file 59 Aug 27, 2018 11:16:31 AM org.apache.catalina.core.StandardContext startInternal 60 SEVERE: Context [/aui] startup failed due to previous errors 61 Aug 27, 2018 11:16:31 AM org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc 62 SEVERE: The web application [/aui] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. 63 Aug 27, 2018 11:16:31 AM org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads 64 SEVERE: The web application [/aui] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak. | cs |
구글링을 좀 해보니 Tocat에서 거의 항상 나오는 문제라고 한다. 톰캣의 context를 reload할때 memory leak 때문에 실제로 OutOfMemory Exception이 발생한다고 하는데. 무시해도 된다고.... 정 해결하고 싶으면
해결 방법?
MySQL JDBC 드라이버를 최신으로 업그레이드 한다.
reference : https://groups.google.com/forum/#!topic/ksug/_nKSKIa8xlg
반응형
'Web > Tomcat' 카테고리의 다른 글
[Tomcat] Java 파일 수정시 톰캣 자동 Reload 기능 off하기 (0) | 2019.08.29 |
---|---|
[Tomcat] 톰캣 띄운후 404 error 발생할때 (0) | 2019.01.16 |
[Tomcat] java.net.BindException: 주소가 이미 사용 중입니다 <null>:8080 (0) | 2019.01.16 |
[Tomcat] java.awt.AWTError: Can't connect to X11 window server using 'localhost:10.0' (0) | 2018.08.30 |
Comments