- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Nginx四层负载均衡的配置指南由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
。
什么是四层负载均衡 。
所谓四层负载均衡,也就是主要通过报文中的目标地址和端口,再加上负载均衡设备设置的服务器选择方式,决定最终选择的内部服务器.
以常见的TCP为例,负载均衡设备在接收到第一个来自客户端的SYN 请求时,选择一个最佳的服务器,并对报文中目标IP地址进行修改(改为后端服务器IP),直接转发给该服务器。TCP的连接建立,即三次握手是客户端和服务器直接建立的,负载均衡设备只是起到一个类似路由器的转发动作。在某些部署情况下,为保证服务器回包可以正确返回给负载均衡设备,在转发报文的同时可能还会对报文原来的源地址进行修改.
应用场景 。
1.四层+七层来做负载均衡,四层可以保证七层的负载均衡的高可用性; 。
2.负载均衡可以做端口转发 。
3.数据库读写分离 。
四层负载均衡特点 。
1.四层负载均衡仅能转发TCP/IP协议、UDP协议、通常用来转发端口,如:tcp/22、udp/53; 。
2.四层负载均衡可以用来解决七层负载均衡端口限制问题;(七层负载均衡最大使用65535个端口号) 。
3.四层负载均衡可以解决七层负载均衡高可用问题;(多台后端七层负载均衡能同时的使用) 。
4.四层的转发效率比七层的高得多,但仅支持tcp/ip协议,不支持http和https协议; 。
5.通常大并发场景通常会选择使用在七层负载前面增加四层负载均衡.
。
环境准备 。
主机 | IP | 身份 |
---|---|---|
lb4 | 172.16.1.6,10.0.0.6 | 四层负载均衡 |
lb01 | 172.16.1.4,10.0.0.4 | 七层负载均衡 |
lb02 | 172.16.1.5,10.0.0.5 | 七层负载均衡 |
lb4和lb02搭建Nginx 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 配置yum源
[nginx-stable]
name=nginx stable repo
baseurl=http:
//nginx
.org
/packages/centos/
$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https:
//nginx
.org
/keys/nginx_signing
.key
module_hotfixes=
true
# 安装Nginx
[root@lb02 ~]
# yum install nginx -y
[root@lb4 ~]
# yum install nginx -y
# 创建用户
[root@lb02 ~]
# groupadd www -g 666 && useradd www -u 666 -g 666 -s /sbin/nologin -M
[root@lb4 ~]
# groupadd www -g 666 && useradd www -u 666 -g 666 -s /sbin/nologin -M
# 配置nginx
[root@lb02 ~]
# vim /etc/nginx/nginx.conf
user www;
[root@lb4 ~]
# vim /etc/nginx/nginx.conf
user www;
# 启动Nginx
[root@lb4 ~]
# systemctl start nginx && systemctl enable nginx && systemctl status nginx
[root@lb02 ~]
# systemctl start nginx && systemctl enable nginx && systemctl status nginx
|
将lb01配置同步到lb02 。
1
2
|
[root@lb01 ~]
# scp /etc/nginx/conf.d/* 172.16.1.5:/etc/nginx/conf.d/
[root@lb01 ~]
# scp /etc/nginx/proxy_params 172.16.1.5:/etc/nginx/
|
测试lb02的负载均衡 。
1
2
3
4
|
[root@lb02 ~]
# nginx -t && systemctl restart nginx
#配置hosts测试
10.0.0.5 linux.wp.com
|
。
四层负载均衡语法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Syntax: stream { ... }
Default: —
Context: main
#示例:四层负载均衡stream模块跟http模块在同一级别,不能配置在http里面
stream {
upstream backend {
server backend1.example.com:12345 weight=5;
server 127.0.0.1:12345 max_fails=3 fail_timeout=30s;
}
server {
listen 12345;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass backend;
}
}
|
配置nginx主配置文件 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[root@lb4 ~]
# vim /etc/nginx/nginx.conf
#注释http层所有内容
user www;
worker_processes 1;
error_log
/var/log/nginx/error
.log warn;
pid
/var/run/nginx
.pid;
events {
worker_connections 1024;
}
#添加一个包含文件
include
/etc/nginx/conf
.c/*.conf;
#http {
# include /etc/nginx/mime.types;
# default_type application/octet-stream;
# log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
# access_log /var/log/nginx/access.log main;
# sendfile on;
# #tcp_nopush on;
# keepalive_timeout 65;
# #gzip on;
# include /etc/nginx/conf.d/*.conf;
#}
|
配置四层负载均衡 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#创建目录
[root@lb4 ~]
# mkdir /etc/nginx/conf.c
#配置
[root@lb4 ~]
# vim /etc/nginx/conf.c/linux.lb4.com.conf
stream {
upstream lbserver {
server 10.0.0.4:80;
server 10.0.0.5:80;
}
server {
listen 80;
proxy_pass lbserver;
proxy_connect_timeout 1s;
proxy_timeout 3s;
}
}
# 启动Nginx
[root@lb4 ~]
# nginx -t && systemctl start nginx
# 配置hosts访问
10.0.0.6 linux.lb4.com
|
四层负载均衡配置日志 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#四层负载均衡是没有access的日志的,因为在nginx.conf的配置中,access的日志格式是配置在http下的,而四层负载均衡配置是在http以外的;
#如果需要日志则需要配置在stream下面
[root@lb4 ~]
# vim /etc/nginx/conf.c/linux.lb4.com.conf
stream {
log_format proxy
'$remote_addr $remote_port - [$time_local] $status $protocol '
'"$upstream_addr" "$upstream_bytes_sent" "$upstream_connect_time"'
;
access_log
/var/log/nginx/proxy
.log proxy;
upstream lbserver {
server 10.0.0.4:80;
server 10.0.0.5:80;
}
server {
listen 80;
proxy_pass lbserver;
proxy_connect_timeout 1s;
proxy_timeout 3s;
}
}
#查看所有web服务器日志
[root@web01 ~]
# tail -f /var/log/nginx/access.log
[root@web02 ~]
# tail -f /var/log/nginx/access.log
|
。
请求负载均衡的5555端口,跳转到web01的22端口 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#简单配置
stream {
server {
listen 5555;
proxy_pass 172.16.1.7:22;
}
}
#一般配置
stream {
upstream ssh_7 {
server 10.0.0.7:22;
}
server {
listen 5555;
proxy_pass ssh_7;
}
}
# 测试
[D:\~]$
ssh
root@10.0.0.6:5555
成功跳转
|
请求负载均衡的6666端口,跳转至172.16.1.51:3306 。
1
2
3
4
5
6
7
8
9
10
|
stream {
upstream db_51 {
server 172.16.1.51:3306;
}
server {
listen 6666;
proxy_pass db_51;
}
}
|
数据库从库的负载均衡 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
stream {
upstream dbserver {
server 172.16.1.51:3306;
server 172.16.1.52:3306;
server 172.16.1.53:3306;
server 172.16.1.54:3306;
server 172.16.1.55:3306;
server 172.16.1.56:3306;
}
server {
listen 5555;
proxy_pass dbserver;
}
}
|
。
到此这篇关于Nginx四层负载均衡配置的文章就介绍到这了,更多相关Nginx四层负载均衡内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/weixin_48981270/article/details/117756324 。
最后此篇关于Nginx四层负载均衡的配置指南的文章就讲到这里了,如果你想了解更多关于Nginx四层负载均衡的配置指南的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
如何检查枚举是否等于可能情况之一。有没有比以下更好的解决方案: [.orderedAscending, .orderedSame].contains(Calendar.current.compare(
我正在尝试使用 openCV 和 C++ 来均衡 HSV 图像的直方图。我知道有些带有 openCV 的库可以为我执行此操作,但我想手动尝试以了解该方法。 我假设均衡将在 HSV 图像的 V chan
我有一个包含多个列的表格。这些列可以包含不同大小的内容,因此高度会有所不同。 我想做的是调整单个元素的高度,使它看起来像这样: . .table { display: flex; ba
:) 我有一个小问题: 我有一个 div,在里面有两个 div,一个挨着另一个。左边的一个在调整大小时改变其高度以保持其与宽度的关系,我希望右边的一个与左边的高度相同;我在文档末尾的 jQuery 中
我正在尝试在 YAML 中创建三列布局。我正在使用此框架的网格功能来定位列(导航、内容、侧边栏)。 我的问题:如何将所有三个 div 的高度设置为相同的大小。 YAML 应该提供 ym-equaliz
这个问题在这里已经有了答案: How do I keep two side-by-side div elements the same height? (24 个答案) 关闭 5 年前。 有没有一种
好像我的 JavaScript 没有听我的。我只是想将所有 anchor 的高度设置为等于这些 anchor 的最高高度。 HTML {{products.title}}
我想对同一主题的两个半脸彩色图像进行均衡,然后将它们合并。它们每个都有不同的色调饱和度和亮度值....使用 opencv 我如何标准化/均衡每个半图像? 我尝试执行 cvEqualizeHist(v,
当一个div高度很大时,我想等于两个div的高度 例子: B ACD Div 2 的高度大于 div 1 最佳答案 我可能有一个可能的解决方案: http://jsfiddle.net/adaz/w
我正在尝试做类似的事情(我已经删除了不必要的东西) Models.Parent.findAll({ where: { parent_id: {
我在 node 中使用 typescript,它在开发模式下运行良好,通过使用以下命令运行我的 index.ts 和 ts-node。 ts-node src/index.ts 但是当我将 types
我是一名优秀的程序员,十分优秀!