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=<path> 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
————————————————
版权声明:本文为CSDN博主「在奋斗的大道」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zhouzhiwengang/article/details/51675002

猜你喜欢

转载自www.cnblogs.com/telwanggs/p/12963372.html