當前比較流行的負載均衡前端服務器主要有apache(with mod_proxy),nginx,lighttpd,squid,perlbal,pound,或者若是你的域名服務商提供DNS級別的負載均衡,也能夠(就是一個域名隨機指向多個IP,定製性不高)。javascript
之前本身經常使用pound做爲前端,它專一於負載均衡,支持https協議,配置還算簡單,不過漸漸發現功能不夠強大,轉而研究其餘一些既能夠作負載均衡,又能作web服務器的高性能工具吧。Perlbal是第一個看的,大牛Danga的傑做,它們開發的memcached(分佈式內存cache系統)很是好用,Perlbal也不差,雖然是基於Perl的,速度上比純C開發的可能稍遜,但不得不說Danga大牛實力非凡。不過公司的機器都是perl5.8.5,而Perlbal必須perl5.8.8以上,升級可能有兼容性問題,故只能做罷。php
轉而研究nginx:Nginx ("engine X") 是一個高性能的 HTTP 和 反向代理 服務器,也是一個 IMAP/POP3/SMTP 代理服務器。 Nginx 是由 Igor Sysoev 爲俄羅斯訪問量第二的 Rambler.ru 站點開發的,它已經在該站點運行超過兩年半了。Igor 將源代碼以類BSD許可證的形式發佈。儘管仍是測試版,可是,Nginx 已經由於它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而聞名了。 css
中文維基地址:http://wiki.codemongers.com/NginxChshtml
模塊依賴:
1 gzip支持,須要zlib http://www.zlib.net/ 下載最新版便可
2 rewrite module requires pcre library http://www.pcre.org/ 下載最新版便可
3 ssl 功能須要 openssl 庫 http://www.openssl.org/ => http://www.openssl.org/source/ LASTEST版本便可前端
安裝過程:java
#下載以上source到/usr/local/src/nginx/目錄下,解壓,則該目錄下狀況以下:
[root@s16 nginx]# ls
nginx-0.6.32 nginx-0.6.32.tar.gz openssl-0.9.8i openssl-0.9.8i.tar.gz pcre-7.8 pcre-7.8.tar.gz zlib-1.2.3 zlib-1.2.3.tar.gz
cd nginx-0.6.32
./configure --with-pcre=../pcre-7.8 --with-zlib=../zlib-1.2.3 --with-openssl=../openssl-0.9.8i
make
make installmysql
#OK,安裝完成
#修改配置:
cd /usr/local/nginx
vi conf/nginx.conf
#例如,去掉例子中的8000端口的服務器配置的註釋
sbin/nginx -t -c conf/nginx.conf (測試配置文件是否正確)
[root@s16 nginx]# sbin/nginx -t -c conf/nginx.conf
2008/09/17 15:26:55 [info] 15879#0: the configuration file conf/nginx.conf syntax is ok
2008/09/17 15:26:55 [info] 15879#0: the configuration file conf/nginx.conf was tested successfullynginx
sbin/nginx (啓動)
ps aux | grep nginx | grep -v grep (查看是否正常啓動了)
#若是沒有正常啓動,查看errorlog,默認位置:/usr/local/nginx/logs/error.logweb
#通過apache bench測試,nginx在serve靜態文件方面性能不比apache(with mod_perl)好多少,基本上,以65K爲分界點,小文件時nginx性能好(最高能夠達到3倍左右速度),大文件時apache性能好(不過差異有限),因此純從速度上來說,nginx並不比apache強,不過nginx小巧,消耗資源少,若是你有不少靜態小文件須要serve,的確是個不錯的選擇哦。sql
這裏推薦一種架構:
1 前端nginx,並serve靜態文件,如圖片,js,css等,nginx是支持gzip壓縮的
2 後端動態程序用fastcgi(lighttpd的spawn_fcgi便可),能夠支持php,perl等多種腳本語言了
下面介紹一下nginx的經常使用配置:
靜態文件用nginx直接serve:
#css|js|ico|gif|jpg|jpeg|png|txt|html|htm|xml|swf|wav這些都是靜態文件,但應分辨,js、css可能常常會變,過時時間應小一些,圖片、html基本不變,過時時間能夠設長一些
location ~* ^.+\.(ico|gif|jpg|jpeg|png|html|htm)$ {
root /var/www/poseidon/root/static;
access_log off;
expires 30d;
}
location ~* ^.+\.(css|js|txt|xml|swf|wav)$ {
root /var/www/poseidon/root/static;
access_log off;
expires 24h;
}
#注:location不包括?後面帶的參數,因此以上正則能夠匹配http://192.168.1.16/image/sxxx.jpg?a=xxx
打開gzip,壓縮傳輸
gzip on;
gzip_comp_level 7;
gzip_min_length 1100; #須要壓縮的最小長度
gzip_buffers 4 8k;
gzip_types text/plain application/javascript text/css text/xml application/x-httpd-php; #指定須要壓縮的文件類型
output_buffers 1 32k;
postpone_output 1460;
查看nginx的狀態
#設定查看Nginx狀態的地址(非默認安裝模塊,須要在編譯時加上--with-http_stub_status_module)
location /NginxStatus {
stub_status on;
access_log on;
auth_basic "NginxStatus";
auth_basic_user_file /var/www/poseidon/root/passwd;
}
使用nginx的rewrite模塊
#強大的rewrite模塊:
#文檔:http://wiki.codemongers.com/NginxHttpRewriteModule
#經典示例:rewrites http://www.mydomain.nl/foo => http://mydomain.nl/foo
if ($host ~* www\.(.*)) {
set $host_without_www $1;
rewrite ^(.*)$ http://$host_without_www$1 permanent; # $1 contains '/foo', not 'www.mydomain.nl/foo'
}
#咱們的應用:rewrites 全部非www.popovivi.com的訪問 => http://www.popovivi.com/xxx
if ($host != "www.popovivi.com") {
rewrite ^(.*)$ http://www.popovivi.com$1 permanent;
}
最多見的nginx+fastcgi+php的使用
#nginx+fastcgi+php-cgi套路:
wget lighttpd1.4.19(or later)
wget php5.2.6(or later)
./configure --prefix=/usr/local/lighttpd
make & make install
./configure --prefix=/usr/local/php-5.2.6 --enable-fastcgi --enable-sockets --enable-force-cgi-redirect --with-gd --enable-mbstring --with-zlib --with-mysql --with-gettext --with-mcrypt --with-mime-magic --with-openssl
make & make test & make install(php.ini的默認讀取位置爲[prefix]/lib)
cp php.ini-dist /usr/local/php-5.2.6/lib/php.ini
/usr/local/nginx/sbin/spawn-fcgi -a 127.0.0.1 -p 10005 -u nobody -g nobody -f /usr/local/php-5.2.6/bin/php-cgi -P /var/run/fastcgi.pid -C 15
#修改nginx的配置文件,使用fastcgi_pass http://127.0.0.1:10005做爲後端
kill -HUP `cat /var/run/nginx.pid` #重啓nginx
nginx+fastcgi+catalyst(for perl users):
#Catalyst自帶文檔:
#http://dev.catalyst.perl.org/wiki//gettingstarted/howtos/deploy/lighttpd_fastcgi.view?rev=22
#以上文檔介紹的是lighttpd和catalyst的結合,本質是同樣的
#實際上也就是用自動生成的script/[myapp]_fastcgi.pl來啓動,剩下的事,就隨意啦(只是用什麼來作前端而已)
#首先安裝FCGI模塊
cpan
install FCGI
install FCGI::ProcManager
cd /var/www/project/script
chmod 755 project_fastcgi.pl
./project_fastcgi.pl -listen 127.0.0.1:3003 -nproc 10 -pidfile /var/run/fcgi_catalyst.pid -daemon
#nginx中,配置:
location / {
fastcgi_pass 127.0.0.1:3003;
include /var/www/project/root/fastcgi.conf;
}
#fastcgi.conf詳細(注意點:將SCRIPT_NAME替換成PATH_INFO便可)
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
#fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
最後,由於nginx沒有方便的控制命令可用,常常要ps,kill等直接控制,比較麻煩,能夠爲它寫一個啓動腳本,例子以下:
#!/bin/sh
#
# description: Starts, stops nginx
#
#chkconfig: 2345 20 80
#dscription: Startup script for nginx webserver on CentOS. Place in /etc/init.d
#
# Author: Touya
set -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="nginx daemon"
NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/var/www/poseidon/root/nginx.conf
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
# Gracefully exit if the package has been removed.
test -x $DAEMON || exit 0
d_start() {
echo "Starting $DESC: $NAME"
$DAEMON -c $CONFIGFILE || echo "already running"
}
d_stop() {
echo "Stopping $DESC: $NAME"
test -f $PIDFILE && kill -QUIT `cat $PIDFILE`
}
d_reload() {
echo "Reloading $DESC configuration…"
kill -HUP `cat $PIDFILE` || echo "can’t reload"
}
case "$1" in
'start')
d_start
echo "started."
;;
'stop')
d_stop
echo "stoped."
;;
'reload')
d_reload
echo "reloaded."
;;
'restart')
echo "Restarting $DESC: $NAME ..."
d_stop
# One second might not be time enough for a daemon to stop,
# if this happens, d_start will fail (and dpkg will break if
# the package is being upgraded). Change the timeout if needed
# be, or change d_stop to have start-stop-daemon use --retry.
# Notice that using --retry slows down the shutdown process somewhat.
sleep 3
d_start
echo "done."
;;
'list')
ps auxf | egrep '(PID|nginx)' | grep -v grep
;;
'test')
$DAEMON -t -c $CONFIGFILE
;;
*)
echo "Usage: $SCRIPTNAME {reload|list|test|start|stop|restart}" >&2
exit 3
;;
esac
exit 0
保存文件,並chmod 755 /etc/init.d/nginx
用chkconfig --list nginx查看是不是一個可用後臺啓動服務,若是是的話,能夠直接執行chkconfig --add nginx,這個後臺服務搞定(代碼中不可省略:#chkconfig: 2345 20 80)
接下能夠用service nginx start|restart|stop來操做你的nginx服務器(restart時從新讀入config)
怎麼樣?是否是方便多了?
小結:本文是我本身實踐nginx的整個經驗總結,包括了前期準備、安裝、配置、架構設計、和現有動態程序結合(公司使用的是Catalyst)、啓動腳本等等,但願對你們有幫助,少走歪路。