Tomcat7集群会话保持到Redis

最早想用tomcat8的版本,但一直不成功,官网写只支持到7的版本,所以这里使用7了:

1、将tomcat-redis-session-1.0-SNAPSHOT.jar、jedis-2.7.2.jar、commons-pool2-2.0.jar上传到 tomcat/lib

2,修改文件tomcat/conf/context.xml,添加如下内容。

1

2

3

4

5

6

<Valve className="com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve" />  

<Manager className="com.orangefunction.tomcat.redissessions.RedisSessionManager"  

    host="192.168.8.10"   

    port="6379"   

    database="0"   

               password=“”

    maxInactiveInterval="60" />

 

 

   

3,tomcat/conf/server.conf可以修改默认目录到指定的目录:
 

    自定义目录绝对路径"
            unpackWARs="true" autoDeploy="true">

       

                       prefix="localhost_access_log." suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />

     

 

转自:https://blog.csdn.net/xlgen157387/article/details/52024139

你可能感兴趣的:(Nginx)