第一步:从 http://nginx.org/download/nginx-1.5.9.tar.gz直接在Linux上用命令下载)
第二步:解压 tar -zxvf nginx-1.5.9.tar.gz 第三步:为了后续准备我们另外下载2个插件模块:nginx_upstream_check_module-0.3.0.tar.gz(检查后端服务器的状态),nginx-goodies-nginx-sticky-module-ng-bd312d586752.tar.gz(建议在/usr/local/src下解压后将目录重命名为nginx-sticky-module-ng-1.2.5) 后端做负载均衡解决session sticky问题(与upstream_check模块结合使用需要另外打补丁,请参考nginx负载均衡配置实战)。nginx-goodies-nginx-sticky-module-ng-bd312d586752.tar.gz作用:后端做负载均衡解决session sticky问题https://github.com/yaoweibin/nginx_upstream_check_module/releases
nginx_upstream_check_module-0.3.0.tar.gz作用:检查后端服务器的状态
https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/downloads
请注意插件与nginx的版本兼容问题,一般插件越新越好,nginx不用追新,稳定第一。nginx-1.4.7,nginx-sticky-module-1.1,nginx_upstream_check_module-0.2.0,
这个搭配也没问题。sticky-1.1与nginx-1.6版本由于更新没跟上编译出错。(可以直接使用Tengine,默认就包括了这些模块)安装配置一:
./configure --prefix=/usr/local/nginx-1.6 --with-pcre=../pcre-8.31 \ > --with-http_stub_status_module --with-http_ssl_module \ > --with-http_gzip_static_module --with-http_realip_module \ > --add-module=../nginx_upstream_check_module-0.3.0
安装配置二:
./configure \> --prefix=/usr \> --sbin-path=/usr/sbin/nginx \> --conf-path=/etc/nginx/nginx.conf \> --error-log-path=/var/log/nginx/error.log \> --http-log-path=/var/log/nginx/access.log \> --pid-path=/var/run/nginx/nginx.pid \> --lock-path=/var/lock/nginx.lock \> --user=nginx \> --group=nginx \> --with-http_ssl_module \> --with-http_stub_status_module \> --with-http_gzip_static_module \> --http-client-body-temp-path=/var/tmp/nginx/client/ \> --http-proxy-temp-path=/var/tmp/nginx/proxy/ \> --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \> --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \> --with-pcre=../pcre-7.8> --with-zlib=../zlib-1.2.3
常用编译选项说明
nginx大部分常用模块,编译时./configure --help以--without开头的都默认安装。--prefix=PATH : 指定nginx的安装目录。默认 /usr/local/nginx--conf-path=PATH : 设置nginx.conf配置文件的路径。nginx允许使用不同的配置文件启动,通过命令行中的-c选项。默认为prefix/conf/nginx.conf--user=name: 设置nginx工作进程的用户。安装完成后,可以随时在nginx.conf配置文件更改user指令。默认的用户名是nobody。--group=name类似--with-pcre : 设置PCRE库的源码路径,如果已通过yum方式安装,使用--with-pcre自动找到库文件。使用--with-pcre=PATH时,需要从PCRE网站下载pcre库的源码(版本4.4 – 8.30)并解压,剩下的就交给Nginx的./configure和make来完成。perl正则表达式使用在location指令和 ngx_http_rewrite_module模块中。--with-zlib=PATH : 指定 zlib(版本1.1.3 – 1.2.5)的源码解压目录。在默认就启用的网络传输压缩模块ngx_http_gzip_module时需要使用zlib 。--with-http_ssl_module : 使用https协议模块。默认情况下,该模块没有被构建。前提是openssl与openssl-devel已安装--with-http_stub_status_module : 用来监控 Nginx 的当前状态--with-http_realip_module : 通过这个模块允许我们改变客户端请求头中客户端IP地址值(例如X-Real-IP 或 X-Forwarded-For),意义在于能够使得后台服务器记录原始客户端的IP地址--add-module=PATH : 添加第三方外部模块,如nginx-sticky-module-ng或缓存模块。每次添加新的模块都要重新编译(Tengine可以在新加入module时无需重新编译)第四步:make 编译 (make的过程是把各种语言写的源码文件,变成可执行文件和各种库文件)make install 安装 (make install是把这些编译出来的可执行文件和库文件复制到合适的地方)第五步:启动关闭nginx检查配置文件是否正确$/usr/local/nginx-1.6/sbin/nginx -t$./sbin/nginx -V #可以看到编译选项启动、关闭$./sbin/nginx # 默认配置文件 conf/nginx.conf,-c 指定$./sbin/nginx -s stop或 pkill nginx 重启,不会改变启动时指定的配置文件$./sbin/nginx -s reload或 kill -HUPcat /usr/local/nginx-1.6/logs/nginx.pid
当然也可以将 nginx 作为系统服务管理,下载 nginx 到/etc/init.d/,修改里面的路径然后赋予可执行权限。 关注公众号获取海量视频