1。缺少apr
在apache官网下载apr ,编译安装。
2. 确实apr-util
在apache官网下载apr-util (configure 的时候要: ./configure --prefix=(apr-util需要安装的目录) --with-apr=(apr安装的目录))
3.缺少 pcre
在pcre 官网(pcre.org) 下载pcre . 编译安装
4. 安装apache (./configure --prefix=/usr/apache_2.4.7 --with-apr=/usr/apr_1.5.0 --with-apr-util=/usr/apr-util_1.5.3 --with-pcre=/usr/pcre_8.34 --enable-so --enable-deflate=shared(如果需要添加gzip压缩等))
================================================
5 安装 tomcat-connectors(tomcat集群jk)
cd native
./configure --with-apxs=/usr/apache_2.4.7/bin/apxs
make
make instal
=======================
tar jxvf httpd-2.4.7.tar.bz2
tar -zxvf tomcat-connectors-1.2.37-src.tar.gz
问题1 : You need a C++ compiler for C++ support.=======
yum install -y gcc gcc-c++