본문 바로가기
Server

Tomcat 8 세션 클러스터링

by 전재훈 2019. 8. 1.
반응형

WAS 이중화를 할때는 세션 공유가 필요합니다.

이를 해결하기위해 세션 클러스터링을 이용하면됩니다.

 

Apache Tomcat 8 - Clustering/Session Replication HOW-TO 에 접속하시면 자세한 설명이 나와있습니다.

 

Apache Tomcat 8 (8.5.43) - Clustering/Session Replication How-To

Simply add to your or your element to enable clustering. Using the above configuration will enable all-to-all session replication using the DeltaManager to replicate session deltas. By all-to-all, we mean that every session gets replicated to all the other

tomcat.apache.org

설정방법

1. Server.xml

<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>

2. WEB-INF/web.xml

<distributable/>

설정법만 간단히 정리해놨고 자세한 내용은 제가 참고한 블로그 보시면 좋을거에요.

참고 블로그 : https://jistol.github.io/java/2017/09/15/tomcat-clustering/

반응형

댓글