CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/u012365828/article/details/100528123

CentOS 6.2 安装Nginx时报错

错误提示:
./configure: error: the HTTP rewrite module requires the PCRE library.

解决办法:

  1. 安装 pcre-devel 与 openssl-devel
  2. yum -y install pcre-devel openssl openssl-devel
  3. ./configure --prefix=/usr/local/nginx
  4. make
  5. make install

关注公众号「Python专栏」,后台回复「机器学习电子书」获得100份机器电子学习相关电子书。

猜你喜欢

转载自blog.csdn.net/u012365828/article/details/100528123