Linux 安装APR

Posted mercury-linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 安装APR相关的知识,希望对你有一定的参考价值。

 

 
Linux下解压缩
 
tar zxvf httpd-2.4.3.tar.gz 
 
编译安装
 
cd httpd-2.4.3
 
./configure
 
提示如下错误信息
 
configure: error: APR not found.  Please read the documentation.
 
解压缩,安装APR1.4.5
 
tar zxvf apr-1.4.5.tar.gz
 
cd apr-1.4.5
 
./configure
 
make
 
make install
 
再次编译
 
cd ..
 
cd httpd-2.4.3
 
./configure
 
提示如下错误信息
 
configure: error: APR-util not found.  Please read the documentation.
 
解压缩,安装APR-util
 
tar zxvf apr-util-1.4.1.tar.gz 
 
cd apr-util-1.4.1
 
./configure 
 
提示需要指定--with-apr参数
 
configure: error: APR could not be located. Please use the --with-apr option.
 
指定参数编译
 
./configure --with-apr=/usr/local/apr
 
make
 
make install
 
再次编译apache,成功
 
cd ..
 
cd httpd-2.4.3
 
./configure
 
make
 
make install
 
 
转载 http://blog.sina.com.cn/s/blog_6f74890d01019217.html

以上是关于Linux 安装APR的主要内容,如果未能解决你的问题,请参考以下文章

Linux 安装APR

Linux_Apache 安装

apache安装错误error: APR not found解决办法

linux(Redhat7)安装Apache

linux 编译式安装apache

Linux Apache 编译安装;