专注 K8S研究
发布时间:2019-04-23 20:53:53
nginx sticky 模块工作流程图下载nginx sticky执行./configure的过程中可能会遇到以下错误:./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by using –without-http_rewrite_moduleoption, or install the PCRE library into the system, or bui.........【阅读全文】
发布时间:2019-04-22 20:41:37
最近 Nginx 漏洞 (CVE-2018-16843,CVE-2018-16844)需要升级nginx的版本到1.14.1 1.15.6,如下以Nginx-1.14.1编译为例 。nginx-1.14.1编译安装1、安装基本环境# yum -y install gcc gcc-c++ autoconf automake make wget vim# yum -y install openssl openssl-devel libxml2-devel libxslt-devel perl-.........【阅读全文】
发布时间:2019-04-19 22:46:15
ngx_cache_purge模块的作用:用于清除指定url的缓存下载地址:http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz 1、编译如下:# ./configure --prefix=/app/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=../ngx_cache_purge-2.3 # make # make install.........【阅读全文】
发布时间:2019-04-19 21:49:04
阅读目录1.Sticky工作原理2.重新编译nginx增加nginx-sticky-module模块3.sticky模块的使用4.其他的参数:语法5.其他需要注意的 nginx会话保持之nginx-sticky-module模块在使用负载均衡的时候会遇到会话保持的问题,常用的方法有:1.ip ha.........【阅读全文】
发布时间:2019-04-19 21:27:18
查了一些资料,看了一些别人写的文档,总结如下,实现nginx session的共享 PHP服务器有多台,用nginx做负载均衡,这样同一个IP访问同一个页面会被分配到不同的服务器上,如果session不同步的话......【阅读全文】