小知识:详解Linux系统配置nginx的负载均衡

详解Linux系统配置nginx的负载均衡

负载均衡的几种方式:

1.轮询:默认按照时间顺序对所有服务器一个一个的访问,如果有服务器宕机,会自动剔除;

2.weight:服务器的方位几率和weight成正比,这个可以在服务器配置不均的时候进行配置;

3.ip_hash:对每个请求的ip进行hash计算,并按照一定的规则分配对应的服务器(可解决session共享);

4.fair:按照每台服务器的响应时间(rt)来分配请求,rt知道优先分配;

5.url_hash:按照访问url的hash值来分配请求;

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {
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;
tcp_nodelay     on;
keepalive_timeout  65;
types_hash_max_size 2048;
include       blockip.conf;    #过虑IP
include       /etc/nginx/mime.types;
default_type    application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
upstream www.域名.com {
server IP1:端口;            #服务器1
server IP2:端口;            #服务器2
ip_hash;               #负载均衡的规则
}
server {
listen    80 default_server;   #NGINX 指向的服务域名
listen    [::]:80 default_server;
server_name IP;           #NGINX 指向的服务器 IP
root     /usr/share/nginx/html; #NGINX HTML 目录
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_pass  http://www.域名.com; #nginx指向的域名
}
error_page 404 /404.html;
location = /40x.html {      #404页面
}
error_page 500 502 503 504 /500.html;
location = /500.html {      #500页面
}
}
}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:https://my.oschina.net/miger/blog/757617

声明: 猿站网有关资源均来自网络搜集与网友提供,任何涉及商业盈利目的的均不得使用,否则产生的一切后果将由您自己承担! 本平台资源仅供个人学习交流、测试使用 所有内容请在下载后24小时内删除,制止非法恶意传播,不对任何下载或转载者造成的危害负任何法律责任!也请大家支持、购置正版! 。本站一律禁止以任何方式发布或转载任何违法的相关信息访客发现请向站长举报,会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。本网站的资源部分来源于网络,如有侵权烦请发送邮件至:2697268773@qq.com进行处理。
建站知识

小知识:nginx升级到支持HTTP2.0的方法示例

2023-4-5 1:51:48

建站知识

小知识:Nginx代理输出缩放图片的方法

2023-4-5 2:01:13

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索