首页 > 其他 > 详细

nginx安装和遇到的问题

时间:2019-02-08 21:27:40      阅读:195      评论:0      收藏:0      [点我收藏+]

nginx安装步骤和遇到的问题 

tar -xvf nginx-1.15.1.tar.gz
cd nginx-1.15.1
./configrue
make
make install

在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

nginx安装和遇到的问题

原文:https://www.cnblogs.com/Ai-Hen-Jiao-zhi/p/10356763.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!