Nginx安装

1、安装PCRE

下载PCRE

wget http://downloads.sourceforge.net/project/pcre/pcre/8.39/pcre-8.39.tar.gz

最新版本可以在 https://sourceforge.net/projects/pcre/files/pcre/ 看到。
解压pcre.我是下载在 /usr/local/nginx/ 下的。

tar zxvf pcre-8.39.tar.gz  #step 1
cd pcre-8.39               #step 2
./configure                #step 3
make && make install       #step 4

其中在Step 3 可能出现下面两个问题:

1、出现no acceptable C compiler found in $PATH 则需要安装GCC组件

yum install gcc

2、出现 You need a C++ compiler for C++ support 问题 则需要再安装 GCC-C++ 组件

yum install gcc-c++

安装完成后,使用

pcre-config --version

可以查看版本。

2、安装Nginx

可以在Nginx官网查看最新版本,复制以.tar.gz结尾的地址
如:http://nginx.org/download/nginx-1.11.6.tar.gz
执行

wget http://nginx.org/download/nginx-1.11.6.tar.gz
tar zxvf nginx-1.11.6.tar.gz
cd nginx-1.11.6
./configure --prefix=/etc/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/nginx/pcre-8.39

其中 –prefix 为安装Nginx的路径,–with-pcre 为pcre的路径。

1、如果出现 error: SSL modules require the OpenSSL library 则需要安装OpenSSL
可以从OpenSSL官网查看最新版本
复制链接https://www.openssl.org/source/openssl-1.1.0c.tar.gz 安装:

wget https://www.openssl.org/source/openssl-1.1.0c.tar.gz
tar zxvf openssl-1.1.0c.tar.gz
cd openssl-1.1.0c.tar.gz
./config -t

会提示需要安装Perl 5

Operating system: x86_64-whatever-linux2
You need Perl 5.

Perl 5 官网查看最新版本
复制地址http://www.cpan.org/src/5.0/perl-5.24.0.tar.gz

wget http://www.cpan.org/src/5.0/perl-5.24.0.tar.gz
tar -xzf perl-5.24.0.tar.gz 
cd perl-5.24.0 
./Configure -des -Dprefix=$HOME/localperl 
make 
make test
make install

2、安装Zlib
可以在这里下载
然后安装:

tar xvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make && make install

再进入到Nginx的解压目录,进行 make install 安装,这里命令有所变化添加了OpenSSL和Zlib

./configure --prefix=/etc/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/nginx/pcre-8.39 --with-openssl=/usr/local/nginx/openssl-1.1.0c --with-zlib=/usr/local/nginx/zlib-1.2.8
make && make install

现在就可以在 /etc/nginx/ 下面看到 Nginx 的安装文件了。

单独启动 Nginx

./nginx -s reload

也可以将 Nginx 添加为系统服务
首先 vi /etc/init.d/nginx
输入内容,参考这里

chkconfig --add nginx
chkconfig nginx on

修改 nginx.conf

    原文作者:Honlyc
    原文地址: https://www.jianshu.com/p/60c12e6ffe43
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞