CentOs6.5 安装Zlib

今天在搭建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= option.

出现这样的问题,让我感觉很不爽,现在解决方法如下:CentOs6.5 安装Zlib

1、安装Zlib

# tar zxvf zlib-1.2.8.tar.gz

# cd zlib-1.2.8

# ./configure --prefix=/usr/local/zlib

# make && make install

你可能感兴趣的:(深蓝计划)