首页 > 代码库 > Linux下Nginx的安装步骤
Linux下Nginx的安装步骤
一、下载pcre
官网下载:http://www.pcre.org/
# wget http://sourceforge.net/projects/pcre/files/pcre/8.35/pcre-8.35.tar.gz/download# cd /pcre-8.35
二、下载purge模块(用于删除Nginx缓存)
# wget http://labs.frickle.com/files/ngx_cache_purge-2.1.tar.gz
# tar zxvf ngx_cache_purge-2.1.tar.gz
# ./configure --prefix=/usr/local/zlib
# make && make install
四、安装openssl
# wget http://www.openssl.org/source/openssl-1.0.1h.tar.gz
# cd openssl-1.0.1h.tar.gz
# tar zxfv openssl-1.0.1h.tar.gz
# cd openssl-1.0.1h
# ./config# ./config --prefix=/usr/local/openssl
# make && make install
五、安装gcc-c++
# yum install -y gcc-c++
六、下载最新的nginx稳定版进行安装
# wget http://nginx.org/download/nginx-1.7.2.tar.gz
# tar zxvf nginx-1.7.2.tar.gz
# ./configure --with-pcre=/data/software/pcre-8.35 --add-module=../ngx_cache_purge-1.2 --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-zlib=/usr/local/zlib --with-openssl=/usr/local/openssl
安装:make && make install
注:如果出现:error: ‘ngx_http_file_cache_node_t‘ has no member named ‘length‘异常,可能是ngx_cache_purge-2.1.tar.gz版本太旧导致
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。