今天在搭建Tomcat+Nginx 负载均衡环境时,提示我没有安装Zlib
./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.
出现这样的问题,让我感觉很不爽,现在解决方法如下:CentOs6.5 安装Zlib
1、安装Zlib
# tar zxvfzlib-1.2.8.tar.gz
# cdzlib-1.2.8
#./configure --prefix=/usr/local/zlib
# make && make install
原文链接:https://www.f2er.com/centos/381996.html