0%

安装nginx时报错

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

出现此错误的解决方法如下:
执行以下两个命令:
1
yum -y install pcre-devel

1
yum -y install openssl openssl-devel
然后再去执行nginx的配置命令configure,顺利执行。

在此做个记录,以防以后再次遇到此问题。