为什么用负载均衡
四层负载均衡
1.通过ip+port决定负载均衡的去向。
⒉.对流量请求进行NAT处理,转发至后台服务器。
3.记录tcp、udp流量分别是由哪台服务器处理,后续该请求连接的流量都通过该服务器处理。4.支持四层的软件
. lvs:重量级四层负载均衡器。
·Nginx:轻量级四层负载均衡器,可缓存。(nginx四层是通过upstream模块). Haproxy:模拟四层转发。
七层负载均衡
1.通过虚拟ur|或主机ip进行流量识别,根据应用层信息进行解析,决定是否需要进行负载均衡。
2.代理后台服务器与客户端建立连接,如nginx可代理前后端,与前端客户端tcp连接,与后端服务器建立tcp连接,
3.支持7层代理的软件:
. Nginx:基于http协议(nginx七层是通过proxy_pass).Haproxy:七层代理,会话保持、标记、路径转移等。
·Nginx:轻量级四层负载均衡器,可缓存。(nginx四层是通过upstream模块). Haproxy:模拟四层转发。
四层和七层的区别
所谓的四到七层负载均衡,就是在对后台的服务器进行负载均衡时,依据四层的信息或七层的信息来决定怎么样转发流量
四层的负载均衡,就是通过发布三层的IP地址(MIP),然后加四层的端口号,来决定哪些流量需要做负载均衡,对需要处理的流量进行NAT处理,转发至后台服务器,并记录下这个TCP或者UDP的流量是由哪台服务器处理的,后续这个连接的所有流量都同样转发到同一台服务器处理
七层的负载均衡,就是在四层的基础上(没有四层是绝对不可能有七层的),再考虑应用层的特征,比如同一个Web服务器的负载均衡,除了根据VIP加80端口辨别是否需要处理的流量,还可根据七层的URL、浏览器类别、语言来决定是否要进行负载均衡。
环境准备:
Haproxy--172.25.254.100
下载软件
编辑工作
分开写
合在一起
重启服务
环境准备
Webserver1---172.25.254.10--下载ngnix!!!记得重启服务
环境准备
Webserver2---172.25.254.20--下载ngnix!!!记得重启服务
webserver1和webserver2的实验操作
测试
Haproxy的基本配置信息
global :全局配置段
- 进程及安全配置相关的参数
- 性能调整相关参数
- Debug参数
proxies :代理配置段
- defaults:为frontend, backend, listen提供默认配置
- frontend:前端,相当于nginx中的server {}
- backend:后端,相当于nginx中的upstream {}
- listen:同时拥有前端和后端配置,配置简单,生产推荐使用
1.设置脚本的的行数,避免太多看不清楚及出错
2. mode http 七层 mode tcp 四层
实验1.编写haproxy的配置文件访问服务端内容实现负载均衡
(在vim /etc/haproxy/haproxy.conf中的两种写法)
测试结果
实验2.日志的配置
定义全局的 syslog 服务器;日志服务器需要开启 UDP 协议,最多可以定义两个
在配置文件中查看local2
在日志文件添加
实验3.多进程和socket文件的配置
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- log 127.0.0.1 local2
- chroot /var/lib/haproxy
- pidfile /var/run/haproxy.pid
- maxconn 100000
- user haproxy
- group haproxy
- daemon
- # turn on stats unix socket
- stats socket /var/lib/haproxy/haproxy.sock1 mode 600 level admin process 1 #
- 启用多个sock文件
- stats socket /var/lib/haproxy/haproxy.sock2 mode 600 level admin process 2
- nbproc 2 #启用多进程
- cpu-map 1 0 #进程和cpu核心绑定防止cpu抖动从而减少系统资源消耗
- cpu-map 2 1 #2 表示第二个进程,1表示第二个cpu核心
- ...下面内容省略 ...
启动多线程
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- log 127.0.0.1 local2
- chroot /var/lib/haproxy
- pidfile /var/run/haproxy.pid
- maxconn 100000
- user haproxy
- group haproxy
- daemon
- # turn on stats unix socket
- stats socket /var/lib/haproxy/haproxy.sock1 mode 600 level admin process 1 #
- 启用多个sock文件
- stats socket /var/lib/haproxy/haproxy.sock2 mode 600 level admin process 2
- #nbproc 2
- #cpu-map 1 0
- #cpu-map 2 1
- nbthread 2 #启用多线程
- ...下面内容省略...
注意: 多线程和多进程之间的不能同时使用会互斥
proxies参数说明
server
weight
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- backend lee-webserver-80-RS
- mode http
- server web1 192.168.0.101:80 check inter 3s fall 3 rise 5
- server web2 192.168.0.102:80 check inter 3s fall 3 rise 5
- ...上面内容省略...
backend
首先下载httpd,再配置文件中设置端口号为8080
注意:此时此刻要注意要关闭web1和web2的内容
disabled ----代表下线了
redirect prefix http://www.baidu.com/ ---重定向网页
maxconn
socat工具
下载软件socat
单进程
- #查看haproxy状态
- [root@haproxy ~]# echo "show info" | socat stdio /var/lib/haproxy/stats
- Name: HAProxy
- Version: 2.4.22-f8e3218
- Release_date: 2023/02/14
- Nbthread: 1
- Nbproc: 1
- Process_num: 1
- Pid: 33542
- Uptime: 0d 0h03m43s
- Uptime_sec: 223
- Memmax_MB: 0
- PoolAlloc_MB: 0
- #查看集群状态
- [root@haproxy ~]# echo "show servers state" | socat stdio /var/lib/haproxy/stats
- 1
- # be_id be_name srv_id srv_name srv_addr srv_op_state srv_admin_state srv_uweight
- srv_iweight srv_time_since_last_change srv_check_status srv_check_result
- srv_check_health srv_check_state srv_agent_state bk_f_forced_id srv_f_forced_id
- srv_fqdn srv_port srvrecord srv_use_ssl srv_check_port srv_check_addr
- srv_agent_addr srv_agent_port
- 2 webcluster 1 web1 172.25.254.20 2 0 2 2 188 6 3 7 6 0 0 0 - 80 - 0 0 - - 0
- 2 webcluster 2 web2 172.25.254.30 2 0 1 1 188 6 3 7 6 0 0 0 - 80 - 0 0 - - 0
- 4 static 1 static 127.0.0.1 0 0 1 1 187 8 2 0 6 0 0 0 - 4331 - 0 0 - - 0
- 5 app 1 app1 127.0.0.1 0 0 1 1 187 8 2 0 6 0 0 0 - 5001 - 0 0 - - 0
- 5 app 2 app2 127.0.0.1 0 0 1 1 187 8 2 0 6 0 0 0 - 5002 - 0 0 - - 0
- 5 app 3 app3 127.0.0.1 0 0 1 1 186 8 2 0 6 0 0 0 - 5003 - 0 0 - - 0
- 5 app 4 app4 127.0.0.1 0 0 1 1 186 8 2 0 6 0 0 0 - 5004 - 0 0 - - 0
- #查看集群权重
- [root@haproxy ~]# echo get weight webcluster/web1 | socat stdio
- /var/lib/haproxy/stats
- 2 (initial 2)
- [root@haproxy ~]# echo get weight webcluster/web2 | socat stdio
- /var/lib/haproxy/stats
- 1 (initial 1)
- #设置权重
- [root@haproxy ~]# echo "set weight webcluster/web1 1 " | socat stdio
- /var/lib/haproxy/stats
- [root@haproxy ~]# echo "set weight webcluster/web1 2 " | socat stdio
- /var/lib/haproxy/stats
- #下线后端服务器
- [root@haproxy ~]# echo "disable server webcluster/web1 " | socat stdio
- /var/lib/haproxy/stats
- #上线后端服务器
- [root@haproxy ~]# echo "enable server webcluster/web1 " | socat stdio
- /var/lib/haproxy/stats
多进程
注意:socat不能修改权重
first
实验:
实验:
实验:
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- listen webserver_80
- bind 172.25.254.100:80
- mode http
- balance source
- server webserver1 192.168.0.101:80 weight 1 check inter 3s fall 3 rise 5
- server webserver2 192.168.0.102:80 weight 1 check inter 3s fall 3 rise 5
- ...上面内容省略...
- #不支持动态调整权重值
- [root@haproxy ~]# echo "set weight webserver_80/webserver1 2" | socat stdio
- /var/lib/haproxy/haproxy.sock
- Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.
- #只能动态上线和下线
- [root@haproxy ~]# echo "set weight webserver_80/webserver1 0" | socat stdio
- /var/lib/haproxy/haproxy.sock
- [root@haproxy ~]# echo "get weight webserver_80/webserver1" | socat stdio
- /var/lib/haproxy/haproxy.sock
- 0 (initial 1)
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- listen webserver_80
- bind 172.25.254.100:80
- mode http
- balance source
- hash-type consistent
- server webserver1 192.168.0.101:80 weight 1 check inter 3s fall 3 rise 5
- server webserver2 192.168.0.102:80 weight 1 check inter 3s fall 3 rise 5
- ...上面内容省略...
实验:
动态调整权限
url
注意:此算法基于应用层,所以只支持 mode http ,不支持 mode tcp
实验:
uri 取模法配置示例
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- listen webserver_80
- bind 172.25.254.100:80
- mode http
- balance uri
- server webserver1 192.168.0.101:80 weight 1 check inter 3s fall 3 rise 5
- server webserver2 192.168.0.102:80 weight 1 check inter 3s fall 3 rise 5
- ...上面内容省略...
uri 一致性hash配置示例
注意:只要第一次不变第二次依旧访问那个路径以及效果
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- listen webserver_80
- bind 172.25.254.100:80
- mode http
- balance url_param name,userid #支持对多个url_param hash
- server webserver1 192.168.0.101:80 weight 1 check inter 3s fall 3 rise 5
- server webserver2 192.168.0.102:80 weight 1 check inter 3s fall 3 rise 5
- ...上面内容省略...
实验:
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- listen webserver_80
- bind 172.25.254.100:80
- mode http
- balance hdr(User-Agent)
- server webserver1 192.168.0.101:80 weight 1 check inter 3s fall 3 rise 5
- server webserver2 192.168.0.102:80 weight 1 check inter 3s fall 3 rise 5
- ...上面内容省略...
上面的指示是代表着浏览器
算法总结:
#静态static-rr--------->tcp/httpfirst------------->tcp/http#动态roundrobin-------->tcp/httpleastconn--------->tcp/http#以下静态和动态取决于hash_type是否consistentsource------------>tcp/httpUri--------------->httpurl_param--------->httphdr--------------->http利用算法,凡是指定了一次及时多次指定都会一直不变:简单记:专一
启动状态页
高级功能及配置
web服务器中需要记录客户端的真实IP地址,用于做访问统计、安全防护、行为分析、区域排行等场景。
当haproxy工作在七层的时候,也可以透传客户端真实IP至后端服务器
测试原文件自带的
测试:
总的测试
四层的时候apache不能找到,基本上访问不了,因此选用七层。
ACL实验--ACL-criterion匹配规范
- hdr string,提取在一个HTTP请求报文的首部
- hdr([<name> [,<occ>]]):完全匹配字符串,header的指定信息,<occ> 表示在多值中使用的值的出
- 现次数
- hdr_beg([<name> [,<occ>]]):前缀匹配,header中指定匹配内容的begin
- hdr_end([<name> [,<occ>]]):后缀匹配,header中指定匹配内容end
- hdr_dom([<name> [,<occ>]]):域匹配,header中的dom(host)
- hdr_dir([<name> [,<occ>]]):路径匹配,header的uri路径
- hdr_len([<name> [,<occ>]]):长度匹配,header的长度匹配
- hdr_reg([<name> [,<occ>]]):正则表达式匹配,自定义表达式(regex)模糊匹配
- hdr_sub([<name> [,<occ>]]):子串匹配,header中的uri模糊匹配 模糊匹配c 报文中a/b/c也会匹
- 配
- #示例:
- hdr(<string>) 用于测试请求头部首部指定内容
- hdr_dom(host) 请求的host名称,如 www.timinglee.org
- hdr_beg(host) 请求的host开头,如 www. img. video. download. ftp.
- hdr_end(host) 请求的host结尾,如 .com .net .cn
- #示例:
- acl bad_agent hdr_sub(User-Agent) -i curl wget
- http-request deny if bad_agent
- #有些功能是类似的,比如以下几个都是匹配用户请求报文中host的开头是不是www
- acl short_form hdr_beg(host) www.
- acl alternate1 hdr_beg(host) -m beg www.
- acl alternate2 hdr_dom(host) -m beg www.
- acl alternate3 hdr(host) -m beg www.
- base : string
- #返回第一个主机头和请求的路径部分的连接,该请求从主机名开始,并在问号之前结束,对虚拟主机有用
- <scheme>://<user>:<password>@#<host>:<port>/<path>;<params>#?<query>#<frag>
- base : exact string match
- base_beg : prefix match
- base_dir : subdir match
- base_dom : domain match
- base_end : suffix match
- base_len : length match
- base_reg : regex match
- base_sub : substring match
- path : string
- #提取请求的URL路径,该路径从第一个斜杠开始,并在问号之前结束(无主机部分)
- <scheme>://<user>:<password>@<host>:<port>#/<path>;<params>#?<query>#<frag>
- path : exact string match
- path_beg : prefix match #请求的URL开头,如/static、/images、/img、/css
- path_end : suffix match #请求的URL中资源的结尾,如 .gif .png .css .js .jpg .jpeg
- path_dom : domain match
- path_dir : subdir match
- path_len : length match
- path_reg : regex match
- path_sub : substring match
- #示例:
- path_beg -i /haproxy-status/
- path_end .jpg .jpeg .png .gif
- path_reg ^/images.*\.jpeg$
- path_sub image
- path_dir jpegs
- path_dom timinglee
- url : string
- #提取请求中的整个URL。
- url :exact string match
- url_beg : prefix match
- url_dir : subdir match
- url_dom : domain match
- url_end : suffix match
- url_len : length match
- url_reg : regex match
- url_sub : substring match
- dst #目标IP
- dst_port #目标PORT
- src #源IP
- src_port #源PORT
- #示例:
- acl invalid_src src 10.0.0.7 192.168.1.0/24
- acl invalid_src src 172.16.0.0/24
- acl invalid_port src_port 0:1023
- status : integer #返回在响应报文中的状态码
- #七层协议
- acl valid_method method GET HEAD
- http-request deny if ! valid_method
hdr_end
ACL实验--匹配规范
-i 不区分大小写-m 使用指定的正则表达式匹配方法-n 不做 DNS 解析-u 禁止 acl 重名,否则多个同名 ACL 匹配或关系
base_sub -m
结果: 凡是curl 路径中的lee无论在哪都能访问
base_reg 以什么结尾
path_sub - m 以什么结尾
判断:
ACL实验--域名匹配
ACL实验--基于源IP和子网调动访问
ACL实验--基于源地址访问控制
- haproxy ~]# vim /etc/haproxy/haproxy.cfg
- ...上面内容省略...
- frontend testacl
- bind :80
- mode http
- ########### ACL settings #######################
- acl web_host hdr_dom(host) www.timinglee.org
- acl ip_test src 172.25.254.1 192.168.0.0/24
- ########### host ###########################
- http-request deny if web_host
- ########### default server ###################
- default_backend default_webserver
- 测试
- 5.4.6 ACL示例-匹配浏览器类型
- 匹配客户端浏览器,将不同类型的浏览器调动至不同的服务器组、
- 范例: 拒绝curl和wget的访问
- 示例:
- backend ip_test-host
- mode http
- server web1 192.168.0.101:80 check weight 1 inter 3s fall 3 rise 5
- backend default_webserver
- mode http
- server web1 172.25.254.10:80 check weight 1 inter 3s fall 3 rise 5
拒接的话:
ACL实验--匹配浏览器类型
ACL示例-基于文件后缀名实现动静分离
172.25.254.10
ACL实验--匹配访问路径实现动静分离
基于http重定向输出错误
四层负载
- #在后端服务器安装和配置mariadb服务
- rs1 ~]# yum install mariadb-server -y
- rs2 ~]# yum install mariadb-server -y
- rs1 ~]# vim /etc/my.cnf
- [mysqld]
- server-id=1 #在另一台主机为
- rs2 ~]# vim /etc/my.cnf
- [mysqld]
- server-id=2 #在另一台主机为
- rs1 ~]# systemctl start mariadb
- rs2 ~]# systemctl start mariadb
- rs1 ~]# mysql -e "grant all on *.* to lee@'%' identified by 'lee';"
- rs2 ~]# mysql -e "grant all on *.* to lee@'%' identified by 'lee';"
- #测试
- [root@node10 ~]# mysql -ulee -plee -h 172.25.254.100 -e "show variables like
- 'hostname'"
- +---------------+-------+
- | Variable_name | Value |
- +---------------+-------+
- | hostname | rs2 |
- +---------------+-------+
- [root@node10 ~]# mysql -ulee -plee -h 172.25.254.100 -e "show variables like
- 'hostname'"
- +---------------+-------+
- | Variable_name | Value |
- +---------------+-------+
- | hostname | rs1 |
- +---------------+-------+
- [root@node10 ~]# mysql -ulee -plee -h172.25.254.100 -e "select @@server_id"
- +-------------+
- | @@server_id |
- +-------------+
- | 1 |
- +-------------+
- [root@node10 ~]# mysql -ulee -plee -h172.25.254.100 -e "select @@server_id"
- +-------------+
- | @@server_id |
- +-------------+
- | 2 |
- +-------------+
172.25.254.12
172.25.254.12的效果:
172.25.254.20的效果
172.25.254.10的效果
证书制定
生成给公钥和私钥