现在国内许多家大的网站都已经采用了Nginx作为web服务器,毕竟nginx在高并发、资源消耗低、反向代理等方面有着不错的性能,现在咱也随下大众,学习下nginx,顺便做下负载均衡。
系统环境,rhel6.5 x86_64 ,去nginx官网(http://nginx.org/)看了下,发现主线版已经到了1.7.3,由于是测试,所以就下了个稳定版1.6.0(http://nginx.org/download/nginx-1.6.0.tar.gz)
解压文件:
<span style="font-size:18px;">tar zxvf nginx-1.6.0</span>
由于nginx rewrite依赖于PCRE库,所以需要在linux系统中编译安装PCRE库,先下载PCRE库:
<span style="font-size:18px;">wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.gz</span>
解压文件:
<span style="font-size:18px;">tar zxvf pcre-8.34.tar.gz</span>
配置
<span style="font-size:18px;">./configure --enable-utf8</span>
我这里提示configure: error: You need aC++ compiler for C++ support,看来pcre是由c++编译的,安装c++编译工具,
<span style="font-size:18px;">yum install -y gcc gcc-c++</span>
然后接着配置pcre
<span style="font-size:18px;">./configure --enable-utf8</span>
编译安装pcre
<span style="font-size:18px;">make && make install</span>
到这里pcre库安装完成,接下来切换到nginx目录继续安装nginx
<span style="font-size:18px;"> ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module --with-http_gzip_static_module <span style="font-family:simsun;"> --with-pcre=/usr/local/pcre-8.34/</span></span>
前提是需要增加nginx这个用户及用户组,当然这里也可以指定其他用户
如果出现安装gzip库的提示,
修改./configure 加上提示中的--without-http_gzip_module,测试中暂时用不到gzip模块。
最后编译安装
<span style="font-size:18px;">make && make install</span>
至此nginx安装完成,下边启动nginx测试下是否安装成功。
先切换至nginx的安装目录下的sbin中,然后启动nginx
<span style="font-size:18px;">nginx -c /home/nginx/tools/nginx/conf/nginx.conf</span>
-c后边为nginx的配置文件路径,请根据自己实际路径配置,注意启动成功后没有任何提示,如果需要请tail -f 监听日志文件,打开浏览器,输入nginx安装机器的IP地址,nginx配置文件默认为80端口,所以在浏览器中直接输入http://127.0.0.1(ip根据自己实际情况配置),如果能出现如下界面,说明nginx安装成功。
最后补充下nginx命令知识:
# /usr/local/nginx/sbin/nginx -h
nginx version: nginx/0.7.63
Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
如果需要关闭请执行./nginx -s stop
如果需要重启请执行./nginx -s reload
nginx负载均衡篇一、nginx安装