编译2.4.X apache 常见错误

安装高版本的 apr    apr-util

     ./configure prefix=/usr/local/apr   ./configure prefix=/usr/local/apr-util --with-apr=/usr/local/apr

 

一 hecking for OpenSSL version >= 0.9.7… FAILED
configure: WARNING: OpenSSL version is too old
no
checking whether to enable mod_ssl… configure: error: mod_ssl has been requested but can not be built due to prerequisite failures

解决方法

 

解决办法(更新源为CentOS6.3或RedHat6.3光盘源)
yum install openssl-devel

 

编译的时候  加上 --enable-ssl

 

二 

 

如果在安装apache的时候入到 error: mod_deflate has been requested but can not be built due to prerequisite failures的错误,那是没有安装zlib包。centos下可以采用yum install zlib-devel, ubuntu下可以采用apt-get install zlib1g-dev.

 

 

编译命令 ./configure --prefix=/usr/local/apache --enable-so --enable-deflate=shared --enable-ssl=shared --enable-expires=shared  --enable-headers=shared --enable-rewrite=shared --enable-static-support  --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre/ --with-mpm=prefork --enable-ssl

posted @ 2016-12-09 10:24  Array253  阅读(378)  评论(0编辑  收藏  举报