Tomcat
Tomcat
[jconsole] JConsoled을 사용해서 Tomcat 5.5 모니터링 하기
Session Replication in Tomcat 5 Clusters, Part 1
Performance
https://issues.apache.org/jira/browse/EL-5
tomcat 6에서는 EL 관련 라이브러리를 두가지를 사용하더군요.
http://apache.mirror.cdnetworks.com/tomcat/tomcat-6/v6.0.26/RELEASE-NOTES
* el-api.jar (EL 2.1 API)
* jasper-el.jar (Jasper 2 EL implementation)
그 반면 tomcat 5.5에서는 apache commons에 있는 EL을 사용하고 있습니다.
http://apache.tt.co.kr/tomcat/tomcat-5/v5.5.29/RELEASE-NOTES
Admin
Tomcat 4/5.x 의 Administration tool을 보자.
Tomcat context
Tomcat에서 Context.xml을 이용한 자카르타 DBCP 설정
http://blog.naver.com/soulooso/60035921997
Tomcat 5.5 서버에 호스트 설정하기 :: Host Configuration on Tomcat 5.5
단일 Tomcat 서버에서 가상 호스트 설정법과 각 호스트별 Manager 기능 설정
Monitoring
http://www.lambdaprobe.org/d/index.htm
User
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager"/>
<role rolename="tomcat"/>
<role rolename="admin"/>
<role rolename="role1"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="role1" password="tomcat" roles="role1"/>
<user username="admin" password="password" roles="admin,manager"/>
</tomcat-users>
Memory leaks where the classloader cannot be garbage collected
Tomcat 7
http://java.dzone.com/articles/mark-thomas-apache-tomcat-7
http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/
http://java.dzone.com/articles/memory-leak-protection-tomcat
http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/
http://tomcat.apache.org/tomcat-6.0-doc/aio.html
http://www.tomcatexpert.com/blog/2011/01/26/cross-site-scripting-xss-prevention-tomcat-7
Tomcat classloader
http://knight76.tistory.com/entry/sunmiscGC-%ED%81%B4%EB%9E%98%EC%8A%A4
Tomcat cookie 관련 버그
https://issues.apache.org/bugzilla/show_bug.cgi?id=47429
http://tomcat.apache.org/tomcat-6.0-doc/changelog.html
설정구성
http://www.tomcatexpert.com/blog/2010/06/16/deciding-between-modjk-modproxyhttp-and-modproxyajp
http://www.infoq.com/presentations/Tuning-Tomcat-Mark-Thomas
http://www.infoq.com/presentations/Diagnosing-Memory-Leaks
http://wiki.apache.org/tomcat/MemoryLeakProtection
Security
http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%3C4F155CDC.8050804@apache.org%3E
http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%3C4F155CE2.3060301@apache.org%3E
History
Last edited on 01/18/2012 11:17 by benelog
Comments (0)