nginx安装步骤和遇到的问题 

tar -xvf nginx-1.15.1.tar.gz
cd nginx-1.15.1

生成Makefile文件

./configrue --prefix=/指定安装的路径

在configure中可能遇到的问题:

(1) ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre= option.

解决办法:安装pcre-devel

 

yum -y install pcre-devel

(2) ./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using --with-zlib= option.

解决办法:安装zlib-devel

 

yum install -y zlib-devel

编译源代码并安装

make
make install

 

posted on 2019-02-08 21:10  博客园197  阅读(294)  评论(0编辑  收藏  举报