nginx+resin 负载均衡 和防止其中一台宕机出现不可以
出现的问题:
在用户登录网站时会出现两台服务器session不一致,一台有保存,另一台没保存。
解决方案:利用nginx_upstream_jvm_route 解决 ,他不是共享,也不是同步,而是通过 cookie_session来判别
1、下载 nginx_upstream_jvm_route
http://code.google.com/p/nginx-upstream-jvm-route/ 到这里去找
nginx-upstream-jvm-route-0.1.tar.gz 下载下来解压
2、下载nginx
http://nginx.org/en/download.html 到这里去找版本
第一次试了一下nginx-1.8.1
patch -p0 < ./nginx-upstream-jvm-route/jvm_route.patch
出现错误
第二次试了一下nginx-1.2.9
patch -p0 < ./nginx-upstream-jvm-route/jvm_route.patch 没有问题
但配置完后,运行项目时出现 405 OPTIONS not allowed ,按照网上搜出来的方法始终没有解决
第三次试了nginx-0.8.55
patch -p0 < ./nginx-upstream-jvm-route/jvm_route.patch 没有问题
cd nginx-0.8.55
./configure --prefix=/usr/local/nginx --add-module=../nginx_upstream_jvm_route
3、配置nginx
vi /user/localhost/nginx/conf/nginx.conf
启动 nginx 和相应的 resin 服务器 运行项目没有问题