https://github.com/abzcoding/tomcat-redis
tomcat using redis as session manager
https://github.com/abzcoding/tomcat-redis
Last synced: 3 months ago
JSON representation
tomcat using redis as session manager
- Host: GitHub
- URL: https://github.com/abzcoding/tomcat-redis
- Owner: abzcoding
- License: mit
- Created: 2015-11-30T16:22:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-19T09:43:05.000Z (almost 9 years ago)
- Last Synced: 2025-01-16T01:25:50.775Z (4 months ago)
- Language: Shell
- Size: 434 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tomcat with Redis Session Manager
=================================This tomcat docker image uses redis as session store, made possible by the [Tomcat Redis Session Manager](https://github.com/pivotalsoftware/session-managers) Project.
Start Redis
-----------```
docker run -d --name redis-session-store redis
```Start Tomcat
------------
```
docker run -d --link redis-session-store:redis -p 8080:8080 abzcoding/tomcat-redis
```Connection Properties
---------------------------To modify the Redis connection setting, adjust the environment variable `REDIS_HOST` and `REDIS_PORT` to your needs.