Go to file
Ranjith Manickam -T (ranmanic - COGNIZANT TECHNOLOGY SOLUTIONS INDIA PVT LTD at Cisco) 897b15ac10 redis database and timeout changes. 2016-11-25 23:27:24 +05:30
resources Tomcat 8 supportability changes added.. 2016-03-19 22:06:08 +05:30
src/com/r/tomcat/session Tomcat 8 supportability changes added.. 2016-03-19 22:05:27 +05:30
.gitattributes 🎪 Added .gitattributes & .gitignore files 2016-03-19 20:47:58 +05:30
.project Tomcat 7 redis cluster session manager 2016-03-19 20:49:10 +05:30
README.md Wiki page URL updated.. 2016-03-19 22:16:21 +05:30
pom.xml Tomcat 7 redis cluster session manager 2016-03-19 20:49:10 +05:30

README.md

Tomcat-Redis-Cluster-Enabled-Session-Manager

Redis session manager is pluggable one. It uses to store sessions into Redis for easy distribution of HTTP Requests across a cluster of Tomcat servers. Sessions are implemented as as non-sticky i.e, each request is forwarded to any server in round-robin manner.

The HTTP Requests session setAttribute(name, value) method stores the session into Redis (must be Serializable) immediately and the session getAttribute(name) method request directly from Redis. Also, the inactive sessions has been removed based on the session time-out configuration.

It supports, both single redis master and redis cluster based on the RedisDataCache.properties configuration.

Going forward, we no need to enable sticky session (JSESSIONID) in Load balancer.

Supports:

Downloads:

Pre-requisite:
  1. jedis.jar
  2. commons-pool2.jar
  3. commons-logging.jar

Tomcat Redis Cluster Enabled Session Manager is available in below location

https://github.com/ran-jit/TomcatClusterRedisSessionManager/wiki/Tomcat-Cluster-Redis-Session-Manager

####Steps to be done,

  1. Move the downloaded jars to tomcat/lib directory

    • $catalina.home/lib/
  2. Add tomcat system property "catalina.base"

    • catalina.base="TOMCAT_LOCATION"
  3. Configure downloaded Redis credentials in RedisDataCache.properties file and move the file to tomcat/conf directory

    • tomcat/conf/RedisDataCache.properties
  4. Add the below two lines in tomcat/conf/context.xml

    • <Valve className="com.r.tomcat.session.management.RequestSessionHandlerValve" />
    • <Manager className="com.r.tomcat.session.management.RequestSessionManager" />
  5. Verify the session expiration time in tomcat/conf/web.xml

    • <session-config>
    • <session-timeout>60</session-timeout>
    • </session-config>

###Note:

  • The Redis session manager supports, both single redis master and redis cluster based on the redis.properties configuration.