码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7编译安装Nginx

时间:2019-07-03 12:12:01      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:prefix   using   rom   write   org   原因   usr   install   tar   

# 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

标签:prefix   using   rom   write   org   原因   usr   install   tar   

原文地址:https://www.cnblogs.com/itero/p/11125464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!