linux安装nginx
首先安装nginx的时候需要先安装几个依赖的包
一个 spenssl zlib pcre
然后下载nginx包
开始安装
1,首先安装c++包
yum install -y gcc gcc-c++
2,安装opensll
tar -zxvf openssl-fips-2.0.9.tar.gz
cd openssl-fips-2.0.9
./config
make
make install
在安装的时候遇到的一个错误 you need perl 5
然后我安装 prel5
2,安装zlib
tar -zxvf zlib-1.2.3.tar.gz
cd zlib-1.2.3
./configure
make
make install
3,安装 pcre
tar -zxvf pcre-8.31.tar.gz
cd pcre-8.31
./configure
make
make install
安装 nginx
tar -zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0/
./configure --with-pcre=../pcre-8.31/ --with-zlib=../zlib-1.2.3/ --with-openssl=../openssl-fips-2.0.9/
make
make install
.当上面的所有步骤完成之后,则说明Nginx安装已经完成,那么我们如何来确定是否安装成功了呢?通过以下命令来确定即可
# cd /usr/local/nginx/sbin/
# ./nginx -t
友情链接
linux nginx安装 http://www.cnblogs.com/hanyinglong/p/5102141.html