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.
The HTTP Requests session setAttribute(name, value) method stores the session into Redis (session attribute values 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.
It supports redis default, sentinel and cluster mode, based on the configuration.
Going forward, we no need to enable sticky session (JSESSIONID) in Load balancer.
## Supports:
* Apache Tomcat 7
* Apache Tomcat 8
* Apache Tomcat 9
- Apache Tomcat 7
- Apache Tomcat 8
- Apache Tomcat 9
## Downloads:
* [latest version (2.0.4)](https://github.com/ran-jit/tomcat-cluster-redis-session-manager/releases/tag/2.0.4)
@ -27,24 +27,24 @@ more details.. https://github.com/ran-jit/tomcat-cluster-redis-session-manager/w
#### Steps to be done,
1. Move the downloaded jars to tomcat/lib directory
* **tomcat/lib/**
- **tomcat/lib/**
2. Add tomcat system property "catalina.base"
* **catalina.base="TOMCAT_LOCATION"**
* example: export catalina.base=/opt/tomcat/
- **catalina.base="TOMCAT_LOCATION"**
* example: export catalina.base=/opt/tomcat
3. Extract downloaded package (tomcat-cluster-redis-session-manager.zip) to configure Redis credentials in redis-data-cache.properties file and move the file to tomcat/conf directory
* **tomcat/conf/redis-data-cache.properties**
- **tomcat/conf/redis-data-cache.properties**
4. Add the below two lines in tomcat/conf/context.xml