码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 安装sticky遇到的问题

时间:2015-10-09 15:29:27      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:sticky   nginx   

nginx版本:nginx-1.6.2.tar.gz

sticky版本:nginx-sticky-module-1.1.tar.gz


./configure --prefix=/usr/local/nginx --with-http_st

ub_status_module --with-http_ssl_module --with-http_realip_module --add-module=/

tmp/soft/nginx-sticky-module-1.1


再执行make && make install时报如下错误


/tmp/soft/nginx-sticky-module-1.1/ngx_http_sticky_misc.c:281: error: too few arg

uments to function ‘ngx_sock_ntop’

make[1]: *** [objs/addon/nginx-sticky-module-1.1/ngx_http_sticky_misc.o] Error 1

make[1]: Leaving directory `/tmp/soft/nginx-1.6.2‘

make: *** [build] Error 2



根据资料 把ngx_http_sticky_misc.c 的281行修改如下即可解决问题


原digest->len = ngx_sock_ntop(in,digest

        ->data, len, 1);


改后digest->len = ngx_sock_ntop(in,sizeof(struct sockaddr_in),digest

        ->data, len, 1);


nginx 安装sticky遇到的问题

标签:sticky   nginx   

原文地址:http://zengchengshan.blog.51cto.com/290149/1701133

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!