构建基于Nginx的web服务器
一、简介
Nginx("engine x") 是一个高性能的HTTP 和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。 Nginx 是由Igor Sysoev为俄罗斯访问量第二的Rambler.ru站点开发的,它已经在该站点运行超过四年多了。Igor 将源代码以类BSD许可证的形式发布。自Nginx 发布四年来,Nginx 已经因为它的占有内存少、并发能力强、稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名了。目前国内各大门户网站已经部署了Nginx,如新浪、网易、腾讯等;国内几个重要的视频分享网站也部署了Nginx,如六房间、酷6等。新近发现Nginx 技术在国内日趋火热,越来越多的网站开始部署Nginx。
二、系统环境
系统平台:RHEL 5.4
Nginx版本:nginx-1.0.15
三、安装及配置Nginx
1.安装pcre软件包,pcre的作用为nginx提供兼容perl的正则表达式库。默认情况下,Nginx只处理静态的网页请求,也就是html.如果是来自动态的网页请求,比如*.php,那么Nginx就要根据正则表达式查询路径,然后把*.PHP交给PHP去处理,可以采用RHEL5光盘自带的rpm包进行安装,另外也可下载最新的源码包进行编译安装。
[root@localhost~]# rpm -ivh pcre-devel-6.6-2.el5_1.7
[root@localhost nginx-1.0.15]# ./configure
更多的安装配置./configure --prefix=/usr/local/nginx
--with-openssl=/usr/include (启用ssl)
--with-pcre=/usr/include/pcre/ (启用正规表达式)
–with-pcre=DIR (set path to PCRE library sources)
注意:set path to PCRE library sources是让你设置到源码目录,而不是编译安装后的目录。
--with-http_stub_status_module (安装可以查看nginx状态的程序)--with-http_memcached_module (启用memcache缓存)
--with-http_rewrite_module (启用支持url重写)
\\其他更多配置选项可以使用./configure --help命令进行查看
四、Nginx服务的运行控制
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@linux nginx-1.0.15]#
[root@linux nginx-1.0.15]# netstat -anpt|grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 16787/nginx
[root@linux nginx-1.0.15]#
在客户端浏览器中执行:http://10.0.0.133(服务器IP地址)进行查看:
[root@localhost nginx-0.8.54]# elinks http://10.0.0.133
6.使用系统信号控制nginx进程:
启动:nginx
重启:kill -HUP `cat /usr/local/nginx/logs/nginx.pid`
1 #!/bin/bash 2 #description: Nginx Service Control Script 3 case "$1" in 4 start) 5 /usr/sbin/nginx 6 ;; 7 stop) 8 /usr/bin/killall -s QUIT nginx 9 ;; 10 restart) 11 $0 stop 12 $0 start 13 ;; 14 reload) 15 /usr/bin/killall -s HUP nginx 16 ;; 17 *) 18 echo "Usage:$0 {start|stop|restart|reload}" 19 exit 1 20 esac 21 exit 0
接下来就可以使用service nginx stop|start|restart|reload对nginx服务进行控制:
[root@linux nginx-1.0.15]# service nginx restart
[root@linux nginx-1.0.15]# !nets
netstat -anpt|grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 16787/nginx
[root@linux nginx-1.0.15]#