nginx負(fù)載均衡一些配置的實戰(zhàn)演示!
#
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.a(chǎn)lias;
# 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;
# }
#}
}
這里內(nèi)容比較多,我們現(xiàn)在自己來寫一個配置文件來實現(xiàn)nginx的訪問:
txp@ubuntu:/usr/local/nginx$ sudo mkdir demo_conf
txp@ubuntu:/usr/local/nginx$ cd demo_conf/
txp@ubuntu:/usr/local/nginx$ vim demo_conf/demo.conf
worker_processes 4;#進程數(shù)量
events{
worker_connections 1024;#并發(fā)訪問數(shù)量
}
http{
server {
listen 8888;#監(jiān)聽端口
server_name localhost;#服務(wù)器名稱
client_max_body_size 100m;#訪問的數(shù)量大小
location / {
root /usr/local/nginx/html/ #訪問這個本地服務(wù)器里面的這個html頁面
}
}
}
現(xiàn)在我們來看一下我們自己配置的是否成功,先把之前的nginx關(guān)閉掉:
./sbin/nginx -s stop
然后再執(zhí)行這個配置文件:
./sbin/nginx -c demo_conf/demo.conf
這里擴展一下基礎(chǔ)知識點:
Nginx 由配置文件中指定的指令控制的模塊組成。指令分為簡單指令和塊指令。一個簡單的指令由空格分隔的名稱和參數(shù)組成,并以分號(;)結(jié)尾。塊指令具有與簡單指令相同的結(jié)構(gòu),但不是以分號結(jié)尾,而是以大括號({和})包圍的一組附加指令結(jié)束。如果塊指令可以在大括號內(nèi)部有其他指令,則稱為上下文(例如:events,http,server 和 location)。配置文件中放置在任何上下文之外的偽指令都被認(rèn)為是主上下文。events 和 http 指令駐留在主上下文中,server 在 http 中的,而 location 在 http 塊中。
3、負(fù)載均衡、反向代理和靜態(tài)資源的訪問演示:
--反向代理原理(ReverseProxy):它是指以代理服務(wù)器來接受internet上的連接請求,然后將請求轉(zhuǎn)發(fā)給內(nèi)部網(wǎng)絡(luò)上的服務(wù)器,并將從服務(wù)器上得到的結(jié)果返回給internet上請求連接的客戶端,簡單來說就是真實的服務(wù)器不能直接被外部網(wǎng)絡(luò)訪問,想要訪問必須通過代理,如下圖所示:
上圖中有兩個網(wǎng)關(guān),一個是nginx應(yīng)用層網(wǎng)關(guān),一個路由器硬件網(wǎng)關(guān),nginx和各服務(wù)器都是在同一個局域網(wǎng)里面;路由器它做了一個端口映射(nat)直接訪問到nginx,給人的感覺nginx就在公網(wǎng)上面;
注意這里的服務(wù)器對外不提供服務(wù)的,通過nginx代理來向外提供服務(wù);外面訪問的是公網(wǎng)ip,然后通過端口映射找到nginx
現(xiàn)在我們用nginx做代理配置(比如說我這里用143的這臺機器代理141這臺機器):
worker_processes 4;
events{
worker_connections 1024;
}
http{
server {
listen 8888;
server_name localhost;
client_max_body_size 100m;
location / {
root /usr/local/nginx/html/;
proxy_pass http://192.168.29.141;
}
}
}
注意:141的那臺機器也安裝nginx了,然后當(dāng)我訪問143這臺機器的時候,其實訪問的是141這臺機器的內(nèi)容,這就是代理的使用了:
-- 負(fù)載均衡:從負(fù)載均衡四個字來看,肯定是用來減輕服務(wù)器的訪問壓力的;比如說當(dāng)一臺服務(wù)器的單位時間內(nèi)的訪問量越大時,服務(wù)器壓力就越大,大到超過自身承受能力時,服務(wù)器就會崩潰(比如每年雙十一活動,淘寶就使用了nginx的負(fù)載均衡的功能,不然當(dāng)天那么多的用戶活躍在淘寶上,服務(wù)器肯定吃不消啊。。因此為了避免服務(wù)器崩潰,讓用戶有更好的體驗,我們通過負(fù)載均衡的方式來分擔(dān)服務(wù)器壓力。我們可以建立很多很多服務(wù)器,組成一個服務(wù)器集群,當(dāng)用戶訪問網(wǎng)站時,先訪問一個中間服務(wù)器(也就是我們的nginx),在讓這個中間服務(wù)器在服務(wù)器集群中選擇一個壓力較小的服務(wù)器,然后將該訪問請求引入該服務(wù)器。如此以來,用戶的每次訪問,都會保證服務(wù)器集群中的每個服務(wù)器壓力趨于平衡,分擔(dān)了服務(wù)器壓力,避免了服務(wù)器崩潰的情況。
下面我演示負(fù)載均衡案例:
worker_processes 4;
events{
worker_connections 1024;
}
http{
upstream backend{
server 192.168.29.142 weight=2;//weight表示權(quán)重
server 192.168.29.141 weight=1;
}
server {
listen 8888;
server_name localhost;
client_max_body_size 100m;
location / {
# root /usr/local/nginx/html/;
# proxy_pass http://192.168.29.141;
proxy_pass http://backend;
}
}
}
注意:權(quán)重表示被訪問的更多,這里由于我三臺機器都安裝了nginx,所以內(nèi)容顯示看不出什么不同之處來,其實142的機器被訪問了2次,141的機器被訪問了1次,我這里有三太機器:141、142、143:
-- 訪問靜態(tài)資源(圖片和視頻)
這里我在143的機器上放了幾張圖片,然后在/usr/local/nginx目錄下創(chuàng)建了一個images文件夾,然后把143機器上的圖片copy到images下面來:
root@ubuntu:/usr/local/nginx# ls
client_body_temp fastcgi_temp images proxy_temp scgi_temp vip_conf
conf html logs sbin uwsgi_temp
root@ubuntu:/usr/local/nginx# mv /home/txp/share/nginx.png images/
root@ubuntu:/usr/local/nginx# ls
client_body_temp fastcgi_temp images proxy_temp scgi_temp vip_conf
conf html logs sbin uwsgi_temp
root@ubuntu:/usr/local/nginx# cd images/
root@ubuntu:/usr/local/nginx/images# ls
1.png 2.png 3.png
然后進行conf文件配置:
worker_processes 4;
events{
worker_connections 1024;
}
http{
upstream backend{
server 192.168.29.142 weight=2;
server 192.168.29.141 weight=1;
}
server {
listen 8888;
server_name localhost;
client_max_body_size 100m;
location / {
# root /usr/local/nginx/html/;
# proxy_pass http://192.168.29.141;
proxy_pass http://backend;
}
location /images/ {
root /usr/local/nginx/;
}
}
}
實現(xiàn)結(jié)果如下:
下面我在演示一下視頻訪問,同樣,我創(chuàng)建一個media目錄,然后把143機器上的test.mp4copy到media目錄來:
root@ubuntu:/usr/local/nginx# mv /home/txp/share/nginx/test.mp4 media/
root@ubuntu:/usr/local/nginx# cd media/
root@ubuntu:/usr/local/nginx/media# ls
test.mp4
conf文件配置:
worker_processes 4;
events{
worker_connections 1024;
}
http{
upstream backend{
server 192.168.29.142 weight=2;
server 192.168.29.141 weight=1;
}
server {
listen 8888;
server_name localhost;
client_max_body_size 100m;
location / {
# root /usr/local/nginx/html/;
# proxy_pass http://192.168.29.141;
proxy_pass http://backend;
}
location /images/ {
root /usr/local/nginx/;
}
location ~.(mp3|mp4) #這里利用了正則表達式
root /usr/local/nginx/media/;
}
}
}
結(jié)果如下:
三、總結(jié)
今天就暫時總結(jié)這么多吧,還有cgi和fastcgi的使用和區(qū)別,就暫時不講了,如果哪天有用到,再來實戰(zhàn)演示。
請輸入評論內(nèi)容...
請輸入評論/評論長度6~500個字
最新活動更多
-
11月20日火熱報名中>> 2024 智能家居出海論壇
-
11月28日立即報名>>> 2024工程師系列—工業(yè)電子技術(shù)在線會議
-
12月19日立即報名>> 【線下會議】OFweek 2024(第九屆)物聯(lián)網(wǎng)產(chǎn)業(yè)大會
-
即日-12.26火熱報名中>> OFweek2024中國智造CIO在線峰會
-
即日-2025.8.1立即下載>> 《2024智能制造產(chǎn)業(yè)高端化、智能化、綠色化發(fā)展藍皮書》
-
精彩回顧立即查看>> 【在線會議】多物理場仿真助跑新能源汽車
推薦專題
- 1 腦機接口芯片,華為出了新專利!
- 2 巨頭搶布局,VC狂撒錢,為了能讓「AI讀心」這些公司卷瘋了
- 3 蘋果市值創(chuàng)新高,iPhone 16能否助力突破4萬億美元大關(guān)?
- 4 地平線開啟配售,阿里百度各砸5000萬美金,市值最高超500億
- 5 小馬智行沖刺納斯達克:或成「全球Robotaxi第一股」,兩年半營收約12億元
- 6 云從科技:營收低迷與虧損加劇,2025年盈利目標(biāo)挑戰(zhàn)重重
- 7 AI奇跡:域名賣爆,無名小島意外賺2億
- 8 逆境求生,泄密風(fēng)波中的高精地圖
- 9 特斯拉無人駕駛來了,馬斯克的餅卻不香了
- 10 未來的大模型,或許都是A卡來算的?
- 高級軟件工程師 廣東省/深圳市
- 自動化高級工程師 廣東省/深圳市
- 光器件研發(fā)工程師 福建省/福州市
- 銷售總監(jiān)(光器件) 北京市/海淀區(qū)
- 激光器高級銷售經(jīng)理 上海市/虹口區(qū)
- 光器件物理工程師 北京市/海淀區(qū)
- 激光研發(fā)工程師 北京市/昌平區(qū)
- 技術(shù)專家 廣東省/江門市
- 封裝工程師 北京市/海淀區(qū)
- 結(jié)構(gòu)工程師 廣東省/深圳市