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= option.

这个错误是由于您正在尝试编译nginx并启用HTTP重写模块,但系统缺少PCRE库。

在Ubuntu / Debian上,您可以使用以下命令:

	sudo apt-get install libpcre3 libpcre3-dev

在CentOS / RedHat上,您可以使用以下命令:

	sudo yum install pcre pcre-devel

 

 

./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=<path> option.

在nginx中我们执行“./configure” 会提示 error: the HTTP gzip module requires the zlib library意思是告诉我们没有zlib library的支持了 碰到此类问题我们只要安装这个库就可以了。

在CentOS / RedHat上,您可以使用以下命令:

	yum install -y zlib-devel

 

 

 

正在加载评论...