Nginx sticky模块实现session粘滞

注:系统已安装nginx

 

一:下载,解压nginx sticky模块。

1
2
3
# cd /usr/local/src
# wget http://nginx-sticky-module.googlecode.com/files/nginx-sticky-module-1.1.tar.gz
# tar -zxvf nginx-sticky-module-1.1.tar.gz

 

二:查看现有nginx的编译参数,加上sticky模块参数重新编译。

1
2
3
4
5
#/usr/local/nginx/sbin/nginx –V
nginx version: nginx /1 .3.14
built by gcc 4.1.2 20080704 (Red Hat 4.1.2-54)
TLS SNI support disabled
configure arguments: --prefix= /usr/local/nginx--user =nobody --group=nobody --with-select_module --with-poll_module--with- file -aio --with-http_ssl_module --with-http_realip_module--with-http_gzip_static_module --with-http_secure_link_module--with-http_sub_module --with-http_stub_status_module--add-module= /root/nginx-http-concat/

 关闭nginx,加上sticky模块重新编译nginx(建议先备份配置文件)

1
2
3
4
# service nginx stop
# cd /usr/local/src/nginx-1.3.14
#./configure --prefix=/usr/local/nginx --user=nobody --group=nobody --with-select_module --with-poll_module --with-file-aio --with-http_ssl_module --with-http_realip_module --with-http_gzip_static_module --with-http_secure_link_module --with-http_sub_module --with-http_stub_status_module --add-module=/root/nginx-http-concat/ --add-module=/usr/local/src/nginx-sticky-module-1.1
# make && make install

 

三:修改配置文件,添加sticky相关参数

 在类似如下位置添加参数(红色字体)

1
2
3
4
5
6
7
vi  upstream.conf
upstream  test .com
{
    sticky;                     ---sticky
    server192.168.1.17:9082 weight=5 max_fails=2 fail_timeout=30s;
    server192.168.1.81:9082 weight=5 max_fails=2 fail_timeout=30s;
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#vi web.conf
server {
        listen       9082;
        server_name *. test .com;
        access_log  /data/logs/test .com access_log;
        error_log   /data/logs/test .com.errorlog;
        set  $proxy_pass  test .com;
  
        location / {
            root   html;
            index index.html index.htm;
            proxy_set_header Host  $host:$server_port;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_pass  http: //test .com;
            add_headerCache-Control no-store;
  
                   }

 

四:启动nginx,网页测试。

1
2
3
#/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
或者 
#service nginx start










本文转自 icenycmh 51CTO博客,原文链接:http://blog.51cto.com/icenycmh/1794452,如需转载请自行联系原作者
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值