【Bug解决】./configure: error: the HTTP rewrite module requires the PCRE library.
错误场景:在Linux虚拟机中安装nginx在配置安装路径的时候报错:./configure: error: the HTTP rewrite module requires the PCRE library.解决问题英语不好的小伙伴要记住,翻译器是万能的,很多时候知道报错信息的含义,就可以尝试解决问题:也就是说需要一个叫PCRE的库,我们需要install一下yum -y install pcr
·
错误场景:
在Linux虚拟机中安装nginx
在配置安装路径的时候报错:
./configure: error: the HTTP rewrite module requires the PCRE library.
解决问题
英语不好的小伙伴要记住,翻译器是万能的,很多时候知道报错信息的含义,就可以尝试解决问题:
也就是说需要一个叫PCRE的库,我们需要install一下
yum -y install pcre-devel
看到这一堆,就知道完成了
然后再回到nginx的安装路径配置输入如下:
./configure --prefix=/usr/local/nginx_fdfs
你有可能还会遇到问题:
./configure: error: the HTTP gzip module requires the zlib library.
跟刚才一个道理,输入:
yum -y install openssl openssl-devel
看到complete就ok啦
然后再重新回到nginx的安装配置命令
./configure --prefix=/usr/local/nginx_fdfs
最终:
问题解决!
如果文章对你有帮助,不要忘了给我点个赞吼( ̄▽ ̄)~
欢迎关注我的微信公众号:松鼠技术站
更多推荐
已为社区贡献11条内容
所有评论(0)