CentOS 7编译安装Nginx
Posted itero
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7编译安装Nginx相关的知识,希望对你有一定的参考价值。
# wget http://nginx.org/download/nginx-1.16.0.tar.gz
# tar -zxvf nginx-1.16.0.tar.gz
# ./configure --prefix=/usr/nginx
遇到报错
./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=<path> option.
原因是缺少pcre库,运行下面命令安装
# yum install pcre-devel
安装成功后,重新运行confing命令,成功后,运行
# make
进行编译,完成后,运行
# make install
进行安装,至此,Nginx就编译安装成功了。
以上是关于CentOS 7编译安装Nginx的主要内容,如果未能解决你的问题,请参考以下文章