Nginx負載均衡

2021-10-04 02:32:01 字數 2748 閱讀 1631

​ 客戶端向反向**傳送請求,接著反向**根據某種負載機制**請求至目標伺服器(這些伺服器都執行著相同的應用),並把獲得的內容返回給客戶端,期中,**請求可能根據配置被發往不同的伺服器。

​ 負載均衡:分攤到多個操作單元上進行執行,和它的英文名稱很匹配。就是我們需要乙個排程者,保證所有後端伺服器都將效能充分發揮,從而保持伺服器集群的整體效能最優,這就是負載均衡。

作業系統:centos 6

伺服器ip:10.0.0.61 10.0.0.62 10.0.0.63

1)安裝nginx並安裝依賴

[root@ chenc01 ~]

# yum -y install gcc gcc-c++ pcre-devel zlib-devel

2)上傳nginx安裝包並解壓
[root@ chenc01 ~]

# rz

[root@ chenc01 ~]

# ls

anaconda-ks.cfg install.log install.log.syslog nginx-1.12.2.tar.gz

[root@ chenc01 ~]

# tar zxf nginx-1.12.2.tar.gz

[root@ chenc01 ~]

# ls

anaconda-ks.cfg install.log install.log.syslog nginx-1.12.2 nginx-1.12.2.tar.gz

3)切換目錄並建立
# 切換目錄

[root@ chenc01 ~]

# cd /usr/local/

# 建立目錄

[root@ chenc01 local]

# mkdir nginx

[root@ chenc01 local]

# ls

bin etc games include lib lib64 libexec nginx sbin share src

# 複製檔案到目錄下

[root@ chenc01 local]

# cp -r /root/nginx-1.12.2 /usr/local/nginx/

4)編譯並安裝
# 切換目錄    

[root@ chenc01 ~]

# cd nginx-1.12.2

# 配置和檢測環境並編譯與編譯安裝

[root@ chenc01 nginx-1.12.2]

# ./configure && make && make install

5)修改配置檔案
# 修改檔案

[root@ chenc01 nginx-1.12.2]

# vim /usr/local/nginx/conf/nginx.conf

#gzip on;

upstream wedservers

server

6)啟動nginx
# 啟動nginx

[root@ chenc01 nginx-1.12.2]

# /usr/local/nginx/sbin/nginx

# 如果報錯執行一下操作

[root@ chenc01 nginx-1.12.2]

# /usr/local/nginx/sbin/nginx -c/usr/local/nginx/conf/nginx.conf

[root@ chenc01 nginx-1.12.2]

# /usr/local/nginx/sbin/nginx -s reload

# 檢視nginx程序

[root@ chenc01 nginx-1.12.2]

# ps -ef | grep nginx

root 3616 1 0 11:39 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx

nobody 3617 3616 0 11:39 ? 00:00:00 nginx: worker process

root 3623 1153 0 11:40 pts/1 00:00:00 grep --color=auto nginx

7)配置兩台web伺服器
# 兩台web伺服器相同操作配置

# 重啟httpd

# 訪問ip

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...