编译Nginx时提示./configure: error: the HTTP gzip module requires the zlib library

时间:2024-05-23 19:03:40

在Linux安装Nginx的时候执行./configure  --prefix=/usr/local/nginx命令的时候报错提示:

编译Nginx时提示./configure: error: the HTTP gzip module requires the zlib library

由于缺少依赖组件,导致nginx相应的模块无法进行安装。

使用yum install -y zlib-devel安装

编译Nginx时提示./configure: error: the HTTP gzip module requires the zlib library

再次使用./configure  --prefix=/usr/local/nginx命令:

编译Nginx时提示./configure: error: the HTTP gzip module requires the zlib library