使用nginx实现动静分离的负载均衡集群
使用nginx实现动静分离的负载均衡集群
使用nginx实现动静分离的负载均衡集群
简述:
LB负载均衡集群分两类: LVS (四层)和 nginx或haproxy (七层)
客户端通过访问分发器的VIP来访问网站
现在应用更复杂,比如现在网站页面有: .php .html .png .jpeg .jsp 等, 有动态页面有静态页面。静态页面一般是不变的,要访问的更快些。
LVS是四层的,也是基于IP的。现在需要在应用层基于不同的应用进行分发。
七层LB , Nginx / Haproxy都可以支持7层LB.
大多数据情况:
静态文件处理:可以使用nginx 或apache
动文件处理: apache ,tomcat
图片文件处理: squid
使用nginx实现动静分离的负载均衡集群
1. Nginx 负载均衡基础知识
Nginx 的 upstream 负载的5种方式,目前最常用 前3 种方式
1)、轮询(默认)
每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器 down 掉,能自动剔除。
2)、weight
指定轮询几率,weight 和访问比率成正比,用于后端服务器性能不均的情况。
3)、ip_hash
每个请求按访问 ip 的 hash 结果分配,这样每个访客固定访问一个后端服务器,可以解决 session 的问题。
4)、fair(第三方)
按后端服务器的响应时间来分配请求,响应时间短的优先分配。
5)、url_hash(第三方) url哈西
按访问url的hash结果来分配请求,使同样的url定向到同一个后端服务器,后端服务器为缓存时比较有效
2 实战 使用nginx 实现负载均衡和动静分离
准备:
机器名称 |
机器IP |
网关 |
机器作用 |
k92 |
IP:192.168.1.92/24 |
192.168.1.1 |
nginx 服务 实现反向代理 动、静分离。 |
k93 |
IP:192.168.1.93/24 |
192.168.1.1 |
web1服务器 apache php |
k94 |
IP:192.168.1.94/24 |
192.168.1.1 |
web2服务器 apache php |
windows7 |
IP:192.168.1.95/24 |
192.168.1.1 |
client 客户访问端 |
简图:
2.1 源码编译安装nginx
安装nginx时必须先安装相应的编译工具和相关依赖
[root@k92 ~]# yum -y install gcc gcc-c++ autoconf automake
[root@k92 ~]# yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
上传 nginx-1.15.12.tar.gz
[root@k92 ~]# ll
total 1016
-rw-------. 1 root root 1417 May 18 19:41 anaconda-ks.cfg
-rw-r--r--. 1 root root 1032347 May 3 13:33 nginx-1.15.12.tar.gz
[root@k92 ~]# tar zxvf nginx-1.15.12.tar.gz -C /url/local/src
[root@k92 src]# cd /usr/local/src/nginx-1.15.12/
[root@k92 nginx-1.15.12]# ./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
参数:
--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文件支持(提供寻求内存使用基于时间的偏移量文件)
编译和安装: (查看CPU逻辑数cat /proc/cpuinfo | grep processor | wc -l)
[root@k92 nginx-1.15.12]# ./configure --help | grep mp4
--with-http_mp4_module enable ngx_http_mp4_module
[root@k92 nginx-1.15.12]# make -j4 && make install
生成运行nginx的用户:
[root@k92 nginx-1.15.12]# useradd -u 8000 -s /sbin/nologin nginx
[root@k92 nginx-1.15.12]# id 8000
uid=8000(nginx) gid=8000(nginx) groups=8000(nginx)
启动nginx
[root@k92 nginx-1.15.12]# ls /usr/local/nginx/conf/nginx.conf
/usr/local/nginx/conf/nginx.conf
[root@k92 nginx-1.15.12]# /usr/local/nginx/sbin/nginx
[root@k92 nginx-1.15.12]# netstat -antup | grep :80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 7439/nginx: master
开机启动:
[root@k92 nginx-1.15.12]# echo '/server/nginx/sbin/nginx & ' >> /etc/rc.local
测试:
查看nginx 运行状态
[root@k92 nginx-1.15.12]# /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@k92 nginx-1.15.12]# /usr/local/nginx/sbin/nginx -s reload
关闭nginx
[root@k92 nginx-1.15.12]# /usr/local/nginx/sbin/nginx -s stop
开启nginx
[root@k92 nginx-1.15.12]# /usr/local/nginx/sbin/nginx -s start
nginx: invalid option: "-s start"
配置nginx成为分发器,实现动静分离
修改配置文件
[root@k92 nginx-1.15.12]# cd /usr/local/nginx/conf/
[root@k92 conf]# cp nginx.conf nginx.conf.back
[root@k92 conf]# vim nginx.conf
改:2 # user nobody;
为:2 user 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服务器上解析了,不再解析给后端服务器:
76 # location ~ \.php$ {
77 # root html;
78 # fastcgi_pass 127.0.0.1:9000;
79 # fastcgi_index index.php;
80 # fastcgi_param SCRIPT_FILENAME /server/nginx-1.8.0/html$fastcgi_script_name;
81 # include fastcgi_params;
82 # }
#定义负载均衡设备的 Ip
在配置文件nginx.conf的最后一行}前,添加以下内容:
upstream htmlservers { #定义负载均衡服务器组名称
server 192.168.1.93:80;
erver 192.168.1.94:80;
}
upstream phpservers{
server 192.168.1.93:80;
server 192.168.1.94:80;
}
upstream picservers {
server 192.168.1.93:80;
server 192.168.1.94:80;
}
#后期工作中,根据工作中的需要,配置成具体业务的IP地址
保存退出。
保存退出。
重新加载nginx服务器配置文件:
[root@k92 conf]# /usr/local/nginx/sbin/nginx -t
测试
test.php
pic.jpg
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
· 为什么 .NET8线程池 容易引发线程饥饿
· 终于决定:把自己家的能源管理系统开源了!
· 外部H5唤起常用小程序链接规则整理
· C#实现 Winform 程序在系统托盘显示图标 & 开机自启动
· WPF 怎么利用behavior优雅的给一个Datagrid添加一个全选的功能
· 了解 ASP.NET Core 中的中间件