进入:/usr/java/
nginx(随意位置)
下载nginx: wget http://nginx.org/download/nginx-1.8.0.tar.gz
下载openssl : wget http:
//www.openssl.org/source/openssl-fips-2.0.9.tar.gz
下载zlib : wget http:
//zlib.net/zlib-1.2.8.tar.gz
下载pcre : wget ftp:
//ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz
如果没有安装c++编译环境,还得安装,通过yum install gcc-c++
完成安装
下一步,编译安装
openssl :
[root@localhost] tar zxvf openssl-fips-2.0.9
.tar.gz
[root@localhost] cd openssl-fips-2.0.9
[root@localhost] ./config && make &&
make install
pcre:
[root@localhost] tar zxvf pcre-8.36
.tar.gz
[root@localhost] cd pcre-8.36
[root@localhost] ./configure && make &&
make install
zlib:
[root@localhost]tar zxvf zlib-1.2.8
.tar.gz
[root@localhost] cd zlib-1.2.8
[root@localhost] ./configure && make &&
make install
最后安装nginx
[root@localhost]tar zxvf nginx-1.8.0
.tar.gz
[root@localhost] cd nginx-1.8.0
[root@localhost] ./configure && make && make install
启动nginx
ln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nginx 软连接
nginx
转载请注明原文地址: https://ju.6miu.com/read-16576.html