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
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。