詳解Linux系統(tǒng)配置nginx的負(fù)載均衡
詳解Linux系統(tǒng)配置nginx的負(fù)載均衡
負(fù)載均衡的幾種方式:
1.輪詢:默認(rèn)按照時(shí)間順序?qū)λ蟹?wù)器一個(gè)一個(gè)的訪問(wèn),如果有服務(wù)器宕機(jī),會(huì)自動(dòng)剔除;
2.weight:服務(wù)器的方位幾率和weight成正比,這個(gè)可以在服務(wù)器配置不均的時(shí)候進(jìn)行配置;
3.ip_hash:對(duì)每個(gè)請(qǐng)求的ip進(jìn)行hash計(jì)算,并按照一定的規(guī)則分配對(duì)應(yīng)的服務(wù)器(可解決session共享);
4.fair:按照每臺(tái)服務(wù)器的響應(yīng)時(shí)間(rt)來(lái)分配請(qǐng)求,rt知道優(yōu)先分配;
5.url_hash:按照訪問(wèn)url的hash值來(lái)分配請(qǐng)求;
NGINX配置文件:
user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { 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 /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include blockip.conf; #過(guò)慮IP include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; upstream www.域名.com { server IP1:端口; #服務(wù)器1 server IP2:端口; #服務(wù)器2 ip_hash; #負(fù)載均衡的規(guī)則 } server { listen 80 default_server; #NGINX 指向的服務(wù)域名 listen [::]:80 default_server; server_name IP; #NGINX 指向的服務(wù)器 IP root /usr/share/nginx/html; #NGINX HTML 目錄 # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { proxy_pass http://www.域名.com; #nginx指向的域名 } error_page 404 /404.html; location = /40x.html { #404頁(yè)面 } error_page 500 502 503 504 /500.html; location = /500.html { #500頁(yè)面 } } }
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
相關(guān)文章
CentOS8.1搭建Gitlab服務(wù)器詳細(xì)教程
這篇文章主要介紹了CentOS8.1搭建Gitlab服務(wù)器詳細(xì)教程,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-06-06詳解在Ubuntu上的Apache配置SSL(https證書)的正確姿勢(shì)
這篇文章主要介紹了詳解在Ubuntu上的Apache配置SSL(https證書)的正確姿勢(shì),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-12-12Linux使用systemd服務(wù)和crontab實(shí)現(xiàn)Shell腳本開機(jī)自動(dòng)運(yùn)行過(guò)程
在Linux系統(tǒng)中,使用systemd和crontab是實(shí)現(xiàn)Shell腳本開機(jī)自啟動(dòng)的兩種常用方法,首先,需創(chuàng)建一個(gè)Shell腳本,將其放置在適當(dāng)目錄,通過(guò)編寫.service文件并將其移動(dòng)到/etc/systemd/system/目錄下,可以設(shè)置為systemd服務(wù)2024-09-09Ubuntu18.04 linux系統(tǒng)安裝JDK與Mysql的方法
這篇文章主要介紹了Ubuntu18.04 linux系統(tǒng)安裝JDK與Mysql的方法,需要的朋友可以參考下2020-02-02Linux系統(tǒng)中Tomcat環(huán)境配置方式
這篇文章主要介紹了Linux系統(tǒng)中Tomcat環(huán)境配置方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-04-04讓Apache支持shtml實(shí)現(xiàn)include文件解析的配置方法
Apache支持include文件解析shtml首先要應(yīng)該修改Apache配置文件httpd.conf2011-03-03