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

nginx实现动静分离负载均衡

时间:2018-09-14 23:56:44      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:sock   body   不同   hash   --   shadow   地址   文本   limit   

拓扑:nginx代理分发器:192.168.2.130
web1===192.168.2.131
web2===192.168.2.132
源码编译安装nginx
1、环境准备:
(1)安装nginx时必须先安装相应的编译工具和相关依赖

[root@Qj01 ~]#yum -y install gcc gcc-c++ autoconf automake
[root@Qj01 ~]#yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel

zlib:nginx提供gzip模块,需要zlib库支持
openssl:nginx提供ssl功能
pcre:支持地址重写rewrite功能
(2)安装nginx并创建运行用户

[root@Qj01 ~]# tar zxvf nginx-1.8.0.tar.gz -C /usr/local/src/
[root@Qj01 ~]# cd /usr/local/src/nginx-1.8.0/
[root@Qj01 nginx-1.8.0]# ./configure --prefix=/usr/local/nginx  --with-http_dav_module --with-http_stub_status_module --with-http_addition_module --with-http_sub_module --with-http_flv_module  --with-http_mp4_module
[root@Qj01 nginx-1.8.0]# cat /proc/cpuinfo | grep processor
processor   : 0
processor   : 1
[root@Qj01 nginx-1.8.0]# cat /proc/cpuinfo | grep processor | wc -l
2
[root@Qj01 nginx-1.8.0]# make -j 2 && make install
[root@Qj01 nginx-1.8.0]# useradd -u 5000 -s /sbin/nologin  nginx

参数:
--with-http_dav_module 启用ngx_http_dav_module支持(增加PUT,DELETE,MKCOL:创建集合,COPY和MOVE方法)默认情况下为关闭,需编译开启
--with-http_stub_status_module 启用ngx_http_stub_status_module支持(获取nginx自上次启动以来的工作状态)
--with-http_addition_module 启用ngx_http_addition_module支持(作为一个输出过滤器,支持不完全缓冲,分部分响应请求)
--with-http_sub_module 启用ngx_http_sub_module支持(允许用一些其他文本替换nginx响应中的一些文本)
--with-http_flv_module 启用ngx_http_flv_module支持(提供寻求内存使用基于时间的偏移量文件)
--with-http_mp4_module 启用对mp4文件支持(提供寻求内存使用基于时间的偏移量文件)
[root@Qj01 nginx-1.8.0]# ./configure --help | grep mp4
--with-http_mp4_module enable ngx_http_mp4_module
(3)启动nginx设置开机启动

[root@Qj01 sbin]# /usr/local/nginx/sbin/nginx  
[root@Qj01 sbin]# netstat -anptu | grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      4816/nginx: master 
[root@Qj01 sbin]# echo "/usr/local/nginx/sbin/nginx &" >> /etc/rc.local 

(4)编辑配置文件

[root@Qj01 nginx]# cd /usr/local/nginx/conf/
[root@Qj01 conf]# cp nginx.conf nginx.conf.bak
改:# user nobody;
为:user nginx nginx;   

改:
43         location / {
 44             root   html;
 45             index  index.html index.htm;          #在location / { 。。。} 中添加以下内容  #定义分发策略
location / {
            root   html;
            index  index.html index.htm;

        if ($request_uri ~* \.html$){
                   proxy_pass http://htmlservers;
           }   
        if ($request_uri ~* \.php$){
                   proxy_pass http://phpservers;
           }   
                   proxy_pass http://picservers;

      }

技术分享图片![]
把以下内容注释掉,否则php文件直接在nginx服务器上解析了,不再解析给后端服务器:
技术分享图片
#定义负载均衡设备的 Ip
在配置文件nginx.conf的最后一行}前,添加以下内容:

  upstream  htmlservers {  
         server 192.168.2.131:80;   
         server 192.168.2.132:80;
 }
 upstream  phpservers{
         server 192.168.2.131:80;   
         server 192.168.2.132:80;
 }
 upstream  picservers {
         server 192.168.2.131:80;   
         server 192.168.2.132:80;
 }

技术分享图片
(5)检查配置文件并重新加载nginx

[root@Qj01 conf]# /usr/local/nginx/sbin/nginx  -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@Qj01 conf]# /usr/local/nginx/sbin/nginx  -s reload

2.配置后端两台web服务器

[root@Qj02 html]# yum install httpd  php -y
[root@Qj03 html]# yum install httpd  php -y

生成静态测试文件:

[root@Qj02 html]#echo 192.168.2.131 > /var/www/html/index.html
[root@Qj03 html]#echo 192.168.2.132 > /var/www/html/index.html

生成动态测试文件:

[root@Qj02 html]#vim  /var/www/html/test.php   #写如以下内容:
192.168.2.131-php
<?php
phpinfo();
?>
[root@Qj03 html]#vim  /var/www/html/test.php   #写如以下内容:
192.168.2.132-php
<?php
phpinfo();
?>

生成图片文件:
上传如下图片,到“web1网站/var/www/html/目录下:

技术分享图片
技术分享图片
启动apache服务器:

[root@Qj02 html]# service httpd restart
[root@Qj03 html]# service httpd restart

3.测试
技术分享图片
技术分享图片
技术分享图片技术分享图片
技术分享图片
技术分享图片

附加:
测试性能:
扩展: 文件打开数过多
[root@Qj02 html]# ab -n 1000 -c 1000 http://192.168.2.130/index.html #运行正常
[root@Qj02 html]# ab -n 2000 -c 2000 http://192.168.2.130/index.html #报错
This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 192.168.2.130 (be patient)
socket: Too many open files (24) # 测试时,一次打开的socket文件太多。

#ulimit -a #查看
#ulimit -n
1024
系统默认一个进程最多同时允许打开1024的文件
解决:
#ulimit -n 10240 #报错的解决方法

Nginx负载的5种策略设置方法:
1、轮询(默认)
每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除。
upstream backserver {
server 192.168.2.131;
server 192.168.2.132;
}

2、指定权重
指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。
upstream backserver {
server 192.168.2.131 weight=1;
server 192.168.2.132 weight=2;
}

3、IP绑定 ip_hash
每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
upstream backserver {
ip_hash;
server 192.168.2.131:80;
server 192.168.2.132:80;
}

4、fair(第三方)
按后端服务器的响应时间来分配请求,响应时间短的优先分配。
upstream backserver {
server server1;
server server2;
fair;
}

5、url_hash(第三方)
按访问url的hash结果来分配请求,使每个url定向到同一个后端服务器,后端服务器为缓存时比较有效。
upstream backserver {
server squid1:3128;
server squid2:3128;
hash $request_uri;
hash_method crc32;
}

总结,扩展:
如有tomcat ,apache,squid 配置为如下:
[root@Qj02 html]#vim nginx.conf # 在最后添加以下内容。 定义服务器组
upstream tomcat_servers {
server 192.168.2.2:8080;
server 192.168.2.1:8080;
server 192.168.2.11:8080;
}
upstream apache_servers {
server 192.168.2.5:80;
server 192.168.2.177:80;
server 192.168.2.15:80;
}
upstream squid_servers {
server 192.168.2.26:3128;
server 192.168.2.55:3128;
server 192.168.2.18:3128;
}

nginx实现动静分离负载均衡

标签:sock   body   不同   hash   --   shadow   地址   文本   limit   

原文地址:http://blog.51cto.com/13719714/2175260

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