nginx负载均衡
2021/6/21 7:28:43
本文主要是介绍nginx负载均衡,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
nginx负载均衡
一、负载均衡配置语法
参数:upstream name{
server 192.168.206.48:81 weight=1; #权重
server 192.168.206.48:82 down; #当前的server暂时不参与负载均衡
server 192.168.206.48:83 backup; #预留的备份服务器
server 192.168.206.48:84 max_fails; #允许请求失败的次
server 192.168.206.48:85 fail_timeout; #经过max_fails失败后,服务暂停的时间
server 192.168.206.48:86 max_conns; #限制最大的接收连接数
}
默认:没有配置
位置:http
二、调度算法
加权轮询:按时间顺序逐一分配到不同的后端服务。
ip_hash:每个请求按访问IP的hash结果分配,这样来自同一个ip的固定访问一个后端服务器。
upstream name {
ip_hash;
server 116.62.103.228:8001;
server 116.62.103.228:8002;
server 116.62.103.228:8003;
}
url_hash:按照访问的url的hash结果来分配请求,是每个url定向到同一个后端服务器。
upstream name {
hash $request_uri;
server 116.62.103.228:8001;
server 116.62.103.228:8002;
server 116.62.103.228:8003;
}
least_conn: 最少连接数,那个机器连接数少就分发
hash关键数值:hash自定义的key
三、实例步骤
第一步:
server {
listen 80;
server_name localhost;
//访问路由交给proxy_pass
location / {
proxy_pass http://cuitccol.com;
proxy_redirect default;
}
}
第二步:
//http集群服务器
upstream cuitccol.com {
server 192.168.206.48:81 weight=1;
server 192.168.206.48:82 weight=1;
}
第三步:
//配置服务器
server {
listen 81;
server_name 192.168.206.48;
location / {
root html;
index index.php index.html index.htm;
}
}
server {
listen 82;
server_name 192.168.206.48;
location / {
root html;
index index.php index.html index.htm;
}
}
这篇关于nginx负载均衡的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享