欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

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

程序员文章站 2022-06-29 17:11:52
CentOS 6.2 安装Nginx时报错 错误提示: ./configure: error: the HTTP rewrite module requires the PCRE library. 解决办法: 1. 安装 pcre-devel 与 openssl-devel ... ......

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份机器电子学习相关电子书。