Nginx是一款面向性能設(shè)計(jì)的HTTP服務(wù)器,相較于Apache、lighttpd具有占有內(nèi)存少,穩(wěn)定性高等優(yōu)勢(shì)。與舊版本(<=2.2)的Apache不同,nginx不采用每客戶機(jī)一線程的設(shè)計(jì)模型,而是充分使用異步邏輯,削減了上下文調(diào)度開銷,所以并發(fā)服務(wù)能力更強(qiáng)。整體采用模塊化設(shè)計(jì),有豐富的模塊庫和第三方模塊庫,配置靈活。 在Linux操作系統(tǒng)下,nginx使用epoll事件模型,得益于此,nginx在Linux操作系統(tǒng)下效率相當(dāng)高。同時(shí)Nginx在OpenBSD或FreeBSD操作系統(tǒng)上采用類似于epoll的高效事件模型kqueue。nginx同時(shí)是一個(gè)高性能的 HTTP 和 反向代理 服務(wù)器,也是一個(gè) IMAP/POP3/SMTP 代理服務(wù)器。Nginx 已經(jīng)因?yàn)樗姆€(wěn)定性、豐富的功能集、示例配置文件和低系統(tǒng)資源的消耗而聞名了。
想仔細(xì)了解nginx的朋友,給兩個(gè)地址給你們,一個(gè)是張宴的blog,他是中國(guó)較早研究nginx的人,還出了一個(gè)本nginx的書,講的很具體,叫《實(shí)戰(zhàn)nginx:取代Apache的高性能服務(wù)器》,另一個(gè)是51的nginx專題。
而今天我的主題呢,主要是nginx負(fù)載均衡實(shí)驗(yàn),把做的步驟記錄下來,作為一個(gè)學(xué)習(xí)筆記吧,也可以給大家做下參考。
1.實(shí)驗(yàn)環(huán)境
系統(tǒng)版本:CentOS release 5.9 (Final) x86 32位 nginx版本: 1.2.8 nginx負(fù)載均衡位置:192.168.207.131 80端口 WEB_1:192.168.207.129 80端口 WEB_2:192.168.207.130 8080端口 WEB_3:192.168.207.131 8080端口這里呢,我在web_1和web_2上使用的是系統(tǒng)自帶的apache,按要求改變一下監(jiān)聽端口就ok了,當(dāng)然也可以安裝nginx,這個(gè)你自己看著辦吧,我在192.168.207.131上安裝nginx,作為負(fù)載均衡器和web服務(wù)器使用,負(fù)載均衡使用的端口是80,而web服務(wù)使用的是8080端口。
2.下載和安裝nginx
安裝nginx前需要先安裝pcre庫,PCRE(Perl Compatible Regular Expressions)是一個(gè)Perl庫,包括 perl 兼容的正規(guī)表達(dá)式庫,這個(gè)就是為之后的地址重新,location匹配啊等,讓nginx支持正則:
cd /usr/local/src
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz
tar -zxvf pcre-8.21.tar.gz
cd pcre-8.21
./configure
make
make install
下載安裝nginx
cd /usr/local/src
wget
tar -zxvf nginx-1.2.8.tar.gz
cd nginx-1.2.8
./configure --prefix=http://www.3lian.com/usr/local/nginx --with-pcre=http://www.3lian.com/usr/local/src/pcre-8.21 --user=nginx --group=nginx --with-http_stub_status_module
make
make install
注意--with-pcre指向的pcre的源碼路徑,如果要安裝zlib的話也是這樣,添加個(gè)--with-zlib,后面加個(gè)源碼路徑。
3.自定義nginx配置文件
我這里呢,配置文件的參數(shù)就多寫點(diǎn),讓大家多了解一下nginx的參數(shù):
vi /usr/local/nginx/conf/nginx.conf
內(nèi)容如下:
#運(yùn)行用戶
user nginx nginx;
#啟動(dòng)進(jìn)程
worker_processes 2;
#全局錯(cuò)誤日志及PID文件
error_log logs/error.log notice;
pid logs/nginx.pid;
#工作模式及每個(gè)進(jìn)程連接數(shù)上限
events {
use epoll;
worker_connections 1024; #所以nginx支持的總連接數(shù)就等于worker_processes * worker_connections
}
#設(shè)定http服務(wù)器,利用它的反向代理功能提供負(fù)載均衡支持
http {
#設(shè)定mime類型
include mime.types; #這個(gè)是說nginx支持哪些多媒體類型,可以到conf/mime.types查看支持哪些多媒體
default_type application/octet-stream; #默認(rèn)的數(shù)據(jù)類型
#設(shè)定日志格式
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$gzip_ratio"';
log_format download '$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$http_range" "$sent_http_content_range"';
#設(shè)定請(qǐng)求緩沖
client_header_buffer_size 1k;
large_client_header_buffers 4 4k;
#開啟gzip模塊
#gzip on;
#gzip_min_length 1100;
#gzip_buffers 4 8k;
#gzip_types text/plain;
#output_buffers 1 32k;
#postpone_output 1460;
#設(shè)定access log
access_log logs/access.log main;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
#設(shè)定負(fù)載均衡的服務(wù)器列表
upstream mysvr {
#weigth參數(shù)表示權(quán)值,權(quán)值越高被分配到的幾率越大
server 192.168.207.129:80 weight=5;
server 192.168.207.130:8080 weight=5;
server 192.168.207.131:8080 weight=2;
}
server { #這個(gè)是設(shè)置web服務(wù)的,監(jiān)聽8080端口
listen 8080;
server_name 192.168.207.131;
index index.html index.htm;
root /var/www/html;
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root html;
#}
}
#設(shè)定虛擬主機(jī)
server {
listen 80;
server_name 192.168.207.131;
#charset gb2312;
#設(shè)定本虛擬主機(jī)的訪問日志
access_log logs/three.web.access.log main;
#如果訪問 /img/*, /js/*, /css/* 資源,則直接取本地文件,不通過squid
#如果這些文件較多,不推薦這種方式,因?yàn)橥ㄟ^squid的緩存效果更好
#location ~ ^/(img|js|css)/{
# root /data3/Html;
# expires 24h;
#}
#對(duì) "/" 啟用負(fù)載均衡
location / {
proxy_pass ; #以這種格式來使用后端的web服務(wù)器
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
#設(shè)定查看Nginx狀態(tài)的地址 ,在安裝時(shí)要加上--with-http_stub_status_module參數(shù)
location /NginxStatus {
stub_status on;
access_log on;
auth_basic "NginxStatus";
auth_basic_user_file conf/htpasswd; #設(shè)置訪問密碼,htpasswd -bc filename username password
}
}
}
4.啟動(dòng)所以服務(wù)器,查看效果
先添加個(gè)nginx用戶:
useradd nginx
要不然會(huì)報(bào)錯(cuò)的:
/usr/local/nginx/sbin/nginx