2014-06-11 18:38
7976人閱讀
舉報
linux(71)
目錄(?)
[+]
nginx負載均衡簡單配置
準備三颱虛擬機器來做這個實驗:
192.168.232.132 web伺服器
192.168.232.133 web伺服器
192.168.232.134 負載均衡伺服器
1、匯入外部軟體庫
[plain]view plain
copy
print?
rpm -uvh
rpm -uvh
rpm -uvh
以下新增注釋
[plain]view plain
copy
print?
mirrorlist=
以下刪除注釋
[plain]view plain
copy
print?
#baseurl=
yum install nginx
chkconfig nginx on
service nginx start
向web伺服器中放入測試檔案:
[html]view plain
copy
print?
<
html
>
<
head
>
<
title
>
welcome to nginx!
title
>
head
>
<
body
bgcolor
="white"
text
="black"
>
<
center
>
<
h1>
welcome to nginx! 192.168.232.132
h1>
center
>
body
>
html
>
配置負載均衡伺服器: vi /etc/nginx/nginx.conf
內容如下:
下面瀏覽器開啟:192.168.232.134,如果132、133交替顯示則表明試驗成功。
1、輪詢(預設)
每個請求按時間順序逐一分配到不同的後端伺服器,如果後端伺服器down掉,能自動剔除。
2、weight
指定輪詢機率,weight和訪問比率成正比,用於後端伺服器效能不均的情況。
例如:upstream bakend
3、ip_hash
每個請求按訪問ip的hash結果分配,這樣每個訪客固定訪問乙個後端伺服器,可以解決session的問題。
例如:upstream resinserver
4、fair(第三方)
按後端伺服器的響應時間來分配請求,響應時間短的優先分配。
upstream resinserver
5、url_hash(第三方)
按訪問url的hash結果來分配請求,使每個url定向到同乙個後端伺服器,後端伺服器為快取時比較有效。
例:在upstream中加入hash語句,server語句中不能寫入weight等其他的引數,hash_method是使用的hash演算法
upstream resinserver
tips:
upstream resinserver
在需要使用負載均衡的server中增加
每個裝置的狀態設定為:
1.down 表示單前的server暫時不參與負載
2.weight 預設為1.weight越大,負載的權重就越大。
3.max_fails :允許請求失敗的次數預設為1.當超過最大次數時,返回proxy_next_upstream 模組定義的錯誤
4.fail_timeout:max_fails次失敗後,暫停的時間。
5.backup: 其它所有的非backup機器down或者忙的時候,請求backup機器。所以這台機器壓力會最輕。
nginx支援同時設定多組的負載均衡,用來給不用的server來使用。
client_body_in_file_only 設定為on 可以講client post過來的資料記錄到檔案中用來做debug
client_body_temp_path 設定記錄檔案的目錄 可以設定最多3層目錄
location 對url進行匹配.可以進行重定向或者進行新的** 負載均衡
nginx負載均衡簡單配置
nginx負載均衡簡單配置 準備三颱虛擬機器來做這個實驗 192.168.232.132 web伺服器 192.168.232.133 web伺服器 192.168.232.134 負載均衡伺服器 1 匯入外部軟體庫 plain view plain copy print rpm uvh rpm u...
nginx 負載均衡簡單配置
nginx有個特別好使的功能,就是負載均衡。可以保證後台服務的穩定發布,而不會出現發布過程中會出現的502。配置起來也很簡單。1.多個後端服務。我這裡有三個後端tomcat,提供了簡單的資料返回 2.nginx.conf配置 這裡為了不干擾原有的配置,我單獨寫了乙個檔案,blog.conf blog...
nginx負載均衡簡單配置
nginx負載均衡簡單配置 準備三颱虛擬機器來做這個實驗 192.168.232.132 web伺服器 192.168.232.133 web伺服器 192.168.232.134 負載均衡伺服器 1 匯入外部軟體庫 plain view plain copy print rpm uvh rpm u...