nginx 负载均衡

Posted 梦想远航

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 负载均衡相关的知识,希望对你有一定的参考价值。

upstream 配置

在http模块
upstream app {

server 192.168.0.250:8081 weight=5;
server www.cn;
server unix:/tmp/app;

server w1.cn:8082 backup;
server w2.cn:8083 backup;

}

server配置参数

 

指令

含义

down

当前的server暂时不参与负载均衡

backup

预留的备份服务器(一旦其它的服务器均宕机没有存活的了,该标记的机器就会接收请求)

max_fails

设置在fail_timeout时间内尝试对一个服务器连接的最大次数,如果超过这个次数,那么就会标记为down,即允许请求失败的次数

fail_timeout

某个server连接失败了max_fails次,则nginx会认为该server不工作了

同时,在接下来的 fail_timeout时间内,nginx不再将请求分发给失效的server。过了fail_timeout会再次检查服务是否恢复。默认:fail_timeout为10s,max_fails为1次

max_conns

限制最大的接收的连接数

nginx负载均衡配置实例
分别监听8081,8082,8083
code1,code2,code3下分别有

index.php

<?php
echo "<pre>";
print_r($_SERVER);
?>

code1.conf

server {
                listen       8081;
                server_name  192.168.0.250:8081;
                root    /mnt/hgfs/www/web/code1;
                autoindex on;

                access_log  /mnt/hgfs/www/log/w1.access.log  main;

                location / {
                                index   index.php;
                                autoindex on;
                                autoindex_exact_size off;
                                autoindex_localtime on;
                }
                error_log /mnt/hgfs/www/log/w1_err.log info;
                error_page  404              /404.html;

                error_page   500 502 503 504  /50x.html;
                location = /50x.html {
                                root   html;
                }

                location ~ .php$ {
                                fastcgi_pass   127.0.0.1:9000;
                                fastcgi_index  index.php;
                                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                                include        fastcgi_params;
                }
 }

nginx.conf里部分

 http里

upstream code{
          server 192.168.0.250:8081;
          server 192.168.0.250:8082;
          server 192.168.0.250:8083;
          server 192.168.0.251;
        }
server {
        listen       80;
        server_name    192.168.0.250 ;
        access_log  logs/host.access.log  main;
        location / {
                proxy_pass http://code;
            }
}

注意输出的 http_host都是code
[HTTP_HOST] => code
[SERVER_NAME] => 192.168.0.250:8083
[SERVER_PORT] => 8083
[SERVER_ADDR] => 192.168.0.250

默认的方式是轮训
阻止8082 的 如果用同一进程启动的,用端口关掉模拟
iptables -I INPUT -p tcp --dport 8082 -j DROP
开启
iptables -I INPUT -p tcp --dport 8082 -j ACCEPT
这种在从8081到8082切换后有延迟相应
下面这种没有
或者关闭 192.168.0.251上的机器上Nginx进程

#演示
upstream code{
          server 192.168.0.250:8081 down;
          server 192.168.0.250:8082 down;
          server 192.168.0.251 max_fails=1 fail_timeout=10s;
          server 192.168.0.250:8083 backup;
        }

停掉 server 192.168.0.251
server 192.168.0.250:8083 立即开始服务
此时立即开启 192.168.0.251 如果还没到10s,访问的还是 192.168.0.250:8083
到10s后 检测到 192.168.0.251服务恢复,192.168.0.250:8083 转变为backup状态 不在提供服务,由192.168.0.251提供服务

 





















以上是关于nginx 负载均衡的主要内容,如果未能解决你的问题,请参考以下文章

Nginx负载均衡

Nginx反向代理实现负载均衡配置图解

OpenResty 动态负载均衡

nginx反向代理访问很慢,我做了负载均衡,现在几乎无法访问,有谁能帮我解决一下,万分感谢。

nginx--❤️图解及代码实现正向代理反向代理及负载均衡(非常实用,建议收藏❤️)

分布式部署与NGINX负载均衡