Apache: 提示configure: error: APR not found(转)
原文地址:http://davis.zhang2004.blog.163.com/blog/static/2276015220128131455729/
#./configure --prefix……检查编辑环境时出现:
checking for APR... no
configure: error: APR not found . Please read the documentation
解决办法:
1.下载所需软件包:
wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz
wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz
wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip
2.编译安装:
yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs
具体步骤如下:
a:解决apr not found问题>>>>>>
[root@xt test]# tar -zxf apr-1.4.5.tar.gz
[root@xt test]# cd apr-1.4.5
[root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr
[root@xt apr-1.4.5]# make && make install
b:解决APR-util not found问题>>>>
[root@xt test]# tar -zxf apr-util-1.3.12.tar.gz
[root@xt test]# cd apr-util-1.3.12
[root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config
[root@xt apr-util-1.3.12]# make && make install
c:解决pcre问题>>>>>>>>>
[root@xt test]#unzip -o pcre-8.10.zip
[root@xt test]#cd pcre-8.10
[root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre
[root@xt pcre-8.10]#make && make install
4.最后编译Apache时加上:
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util/ \
--with-pcre=/usr/local/pcre
[root@xt pcre-8.10]#./configure --prefix=/apache --with-mpm=worker --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre
[root@xt pcre-8.10]#make && make install
相关推荐
### Apache2.4完整安装及解决configure: error: APR-util not found问题 #### 一、背景介绍 Apache HTTP Server(通常简称为Apache)是目前最流行的Web服务器软件之一,广泛应用于互联网上的各种网站和应用程序。...
Apache遇到的"APR not found"问题通常是由于Apache编译时找不到对应的Apache Portable Runtime (APR)库导致的。APR是Apache HTTP服务器项目的基础组件,它提供了许多操作系统级别的接口,如文件I/O、网络通信、内存...
在配置安装参数时,可能会出现错误:error: APR not found. Please read the documentation。这是因为没有安装 apache 的关联软件 APR 和 APR-UTIL。 解决办法: 1. 下载 APR 和 APR-UTIL 的源文件: ...
- **configure:error:APR not found. Please read the documentation.** - 解决方法:确保已经按照正确顺序安装了APR,并且指定了正确的安装路径。 - **configure:error:APR-util not found. Please read the ...
configure: error: APR could not be located. ``` **解决方案:** 这通常是因为 configure 脚本未能正确识别 APR 的安装路径。 1. 确认 APR 已经正确安装。 2. 在配置 Apache 时指定 APR 的路径: ``` ./...
1. **问题一:configure: error: APR not found.** 这意味着你的系统缺少APR库。解决方法是安装`apr`和`apr-util`: ```bash sudo yum install apr apr-util ``` 2. **问题二:configure: error: PCRE not ...
configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/ ``` 此时需要下载并安装PCRE库: ``` tar -jxvf pcre-8.30.tar.bz2 ``` 配置PCRE库时,确保路径正确...
2. 进入httpd-2.4.3目录,执行命令`./configure`,但是会出现错误`configure: error: APR not found. Please read the documentation.`。这是因为Apache需要关联软件APR的支持。 安装APR 1. 下载apr-1.4.6.tar.gz...
configure: error: Bundled APR requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util packages to ./srclib/. ``` **解决方法**: 1. **下载 APR 和 APR-UTIL 包**:...
编译安装apache 2.4.2 代码如下: sudo echo ‘start’ echo 常见错误: echo configure: error: APR not found. Please read the documentation. echo 解决办法: wget ...
6. **解决错误**:如果在配置阶段遇到“`configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/`”错误,可以尝试安装`pcre-devel`包来解决。 ```bash yum...