1. 程式人生 > 實用技巧 >01-Nginx 實現負載均衡

01-Nginx 實現負載均衡

隨著網際網路不斷髮展,單應用單伺服器有時候很難滿足需求。比如京東、淘寶在面臨雙11的時候,處理程式肯定不會是一臺伺服器。那麼Nginx 可以實現多伺服器共同分擔伺服器壓力問題。

Nginx可以做正向和反向代理。但是實際工作中。應用反向代理的較多。Nginx 地址

一、啟動Nginx

你可以使用DOS 命令符啟動服務,也可以直接雙擊 Nginx.exe 直接啟動服務

啟動服務:start nginx

退出服務:nginx -s quit

強制關閉服務:nginx -s stop

重新載入服務:nginx -s reload (比如配置檔案發生的改變,使用此命令,服務不會停止,是新的配置生效)

驗證配置檔案:nginx -t

使用配置檔案:nginx -c "配置檔案路徑"

使用幫助:nginx -h

二、通過 修改 配置 訪問 webapi

01、新建 WebApi 專案,在IIS 上部署,地址:localhost:8011

02、修改配置檔案

03、這時候在瀏覽器上輸入 localhost:8034 就會轉發到 localhost:8011伺服器上

三、多伺服器實現負載均衡

01、輪詢策略

之前我建立了一個埠號8011的api,現在新建8012、8013埠號的api,實現負載均衡。

修改配置檔案

這樣配置實際上實現了簡單的輪詢策,記住 upstream 取得名字 webapi 那麼 proxy_pass 中名稱要對應,這樣 通過訪問 localhost:8034 找到 http://wenpai -> upstream 中服務地址列表

02、權重策略

You can you up,你行你來,在負載均衡的伺服器中,由於你的效能比較優秀,那麼你可以多承擔一點訪問量。這時候你可以使用權重策略。只要在 其後加 weight=1(預設) weight (小寫) 即可

補充:可以在加其他引數:

down 表示當前的server不參與負載

weight 預設1,weight 值越大,表示負載的權重越大

max_fails 允許請求失敗的次數預設1,當超過最大次數時,返回 proxy_next_upstream 模組定義的錯誤

fail_timeoutmax_fails 次失敗後,暫停的時間

backup 其他所有的非backup機器down或者忙的時候,請求backup機器,所以這臺機器壓力最輕鬆。

03、ip_hash 策略

完整的配置資訊:

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
	
	upstream webApi {
		ip_hash; #表示使用IPHash策略
		server localhost:8011 weight=6;
		server localhost:8012;
		server localhost:8013;
	}

    server {
        listen       8034;
        server_name  8034.max.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass http://webApi;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}