nginx 轮询模式 nginx_upstream_jvm_route 插件安装

Posted 龙沙宝石

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 轮询模式 nginx_upstream_jvm_route 插件安装相关的知识,希望对你有一定的参考价值。

使用nginx_upstream_jvm_route 插件的目的是为了保证在轮询机制下的session的共享

前提:源码方式安装nginx。patch命令

 

1、下载nginx_upstream_jvm_route 插件。

2、将插件解压在任意位置/opt/nginx-upstream-jvm-route-master

3、执行命令patch -p0 </opt/nginx-upstream-jvm-route-master/jvm_route.patch 

4、安装nginx 

cd /data/nginx-1.10.2i

依次执行

./configure --prefix=/data/nginx --add-module=/opt/nginx-upstream-jvm-route-master

make

make install

5、配置nginx

vim nginx.conf

修改以下:

upstream GolivePay

{
  server 192.168.134.229:4401 srun_id=tomcat-299;
  server 192.168.134.233:4401 srun_id=tomcat-233;

  jvm_route $cookie_JSESSIONID|sessionid reverse;

}

6、修改tomcat

vim tomcat-299/conf/server.xml

修改以下:

<Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat-299">

vim tomcat-233/conf/server.xml

修改以下:

<Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat-233">

 7、重新启动nginx,tomcat-299,tomcat-233

 

以上是关于nginx 轮询模式 nginx_upstream_jvm_route 插件安装的主要内容,如果未能解决你的问题,请参考以下文章

nginx-轮询权重ip_hash fair模式

nginx负载均衡

Nginx——nginx作为负载均衡服务(轮询策略与加权轮询)

nginx性能优化参考

【keepalived】keepalived vrrp 双实例

Nginx日志轮询切割