欢迎光临
我们一直在努力

nginx+redis主从+tomcat一机多实例实现会话共享

1、安装nginx

2、用两个虚拟机安装两个reids(reids1、redis2) 其中一个配置slaveof 192.168.1.86 6379(另一个redis的IP与端口)

3、安装两个tomcat

修改tomcat的context.xml:

    <Context>  
      
        <!– Default set of monitored resources –>  
        <WatchedResource>WEB-INF/web.xml</WatchedResource>  
      
        <!– Uncomment this to disable session persistence across Tomcat restarts –>  
        <!–
        <Manager pathname=”” />
        –>  
      
        <!– Uncomment this to enable Comet connection tacking (provides events  
             on session expiration as well as webapp lifecycle) –>  
        <!–
        <Valve className=”org.apache.catalina.valves.CometConnectionManagerValve” />
        –>  
      
      <Valve className=”com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve” />  
      <Manager className=”com.orangefunction.tomcat.redissessions.RedisSessionManager”  
     host=”192.168.1.106″
       port=”6379″  (注:一个tomcat设置对应的一个redis的IP与端口)
       database=”0″  
       maxInactiveInterval=”60″ />  
    </Context> 

参考:

http://blog.csdn.net/u013410747/article/details/50651995

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。