nginx負載均衡

2022-05-05 11:39:08 字數 903 閱讀 3517

準備3臺伺服器,一台做nginx負載均衡,兩台為apache的web伺服器

1.首先原始碼安裝nginx

nginx的安裝方式

配置nginx負載均衡和nginx負載均衡排程演算法為加權輪詢,加權輪詢比例為1:3,下列**有注釋。

為兩台伺服器建立測試頁面

採用apache服務,路徑:

/var/www/html

vim /var/www/html/index.html

web1 web2

測試訪問nginx的ip,並測試負載均衡和加權輪詢

可以看到1:3的web1/2出現次數

小步驟:

收集整理nginx負載均衡的日誌到/tmp下面

cat /usr/local/nginx/logs/*.log > /tmp/nginx

過濾出訪問最多的前兩條client ip位址

[root@localhost logs]# cat /usr/local/nginx/logs/access.log | awk '' |sort|uniq |sed -n '1,2p'

檢視到兩個訪問最多的ip

nginx負載均衡的日誌:

tail -f /usr/local/nginx/logs/access.log

nginx 負載均衡 Nginx負載均衡策略

nginx提供的負載均衡策略有2種 內建策略和擴充套件策略。內建策略為輪詢 預設 加權輪詢,ip hash,第三方。upstream mysvr1 輪詢 每個請求按照時間順序逐一的分配到每乙個後台伺服器上。如果某台伺服器宕機了,將會自動的剔除宕機的服務。nginx預設就是輪詢其權重都預設為1,伺服器...

nginx負載均衡

nginx 的 upstream目前支援 4 種方式的分配 1 輪詢 預設 每個請求按時間順序逐一分配到不同的後端伺服器,如果後端伺服器down掉,能自動剔除。2 weight 指定輪詢機率,weight和訪問比率成正比,用於後端伺服器效能不均的情況。3 ip hash 每個請求按訪問ip的hash...

nginx負載均衡

nginx s stop quick exit nginx s quit graceful quit nginx s reload changing configuration,starting a new worker,quitting an old worker gracefully nginx...