`
wanxiaotao12
  • 浏览: 472672 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

解决编译apache出现的问题:configure: error: APR not found . Please read the documentation

 
阅读更多

#./configure --prefix……检查编辑环境时出现:

checking for APR... no
configure: error: APR not found .  Please read the documentation

解决办法:

1.下载所需软件包:

  1. wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz  
  2. wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz  
  3. wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip   

2.编译安装:

  1. yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs 

具体步骤如下:

  a:解决apr not found问题>>>>>>

  1. [root@xt test]# tar -zxf apr-1.4.5.tar.gz  
  2. [root@xt test]# cd  apr-1.4.5  
  3. [root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr  
  4. [root@xt apr-1.4.5]# make && make install  
  5.  

  b:解决APR-util not found问题>>>>

  1. [root@xt test]# tar -zxf apr-util-1.3.12.tar.gz  
  2. [root@xt test]# cd apr-util-1.3.12  
  3. [root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config  
  4. [root@xt apr-util-1.3.12]# make && make install 


  c:解决pcre问题>>>>>>>>>

  1. [root@xt test]#unzip -o pcre-8.10.zip  
  2. [root@xt test]#cd pcre-8.10  
  3. [root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre  
  4. [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

成功编译完成~

 

转自:http://xtony.blog.51cto.com/3964396/836508

分享到:
评论

相关推荐

    apache2.4完整安装

    ### Apache2.4完整安装及解决configure: error: APR-util not found问题 #### 一、背景介绍 Apache HTTP Server(通常简称为Apache)是目前最流行的Web服务器软件之一,广泛应用于互联网上的各种网站和应用程序。...

    Apache遇到的问题 APR not found问题的解决方法

    Apache遇到的"APR not found"问题通常是由于Apache编译时找不到对应的Apache Portable Runtime (APR)库导致的。APR是Apache HTTP服务器项目的基础组件,它提供了许多操作系统级别的接口,如文件I/O、网络通信、内存...

    PHP编译configure时常见错误的总结

    2. **错误:configure: error: xml2-config not found. Please check your libxml2 installation.** 解决方案:对于CentOS,执行`yum -y install libxml2 libxml2-devel`;Debian用户则运行`apt-get install libxml...

    安装linux编译时报apr错误的解决方法

    记得检查错误日志(通常位于`/usr/local/apache2/logs/error_log`),以确认是否有其他问题。 在处理这类问题时,保持耐心和仔细检查错误信息是关键。有时,问题可能出在编译选项、依赖库的版本不兼容或是环境变量...

    apr-1.7.0.zip

    apache-http源码编译 1、httpd-2.4.41.tar 2、apr-1.7.0.tar 报错: rm: cannot remove `libtoolT': No such file or..../configure --prefix=/usr/local/apache --with-apr=/usr/local/apr/ --with-apr=/usr/local/apr

    Linux环境apache安装

    - **configure:error:APR not found. Please read the documentation.** - 解决方法:确保已经按照正确顺序安装了APR,并且指定了正确的安装路径。 - **configure:error:APR-util not found. Please read the ...

    Linphone编译错误及解决方法

    13. configure: error:intltool not found 错误原因:缺少intltool。 解决方法:sudo apt-get install intltool Make错误: Git相关: 解决方法:sudo apt-get install git Make install: 解决方法:...

    apache安装依赖包apr-1.5.2.tar.gz,apr-util-1.5.4.tar.gz,pcre-8.32.tar.gz

    在给定的压缩包文件中,包含的是Apache安装过程中常用的三个关键依赖包:`apr-1.5.2.tar.gz`, `apr-util-1.5.4.tar.gz`, 和 `pcre-8.32.tar.gz`。 1. **Apache Portable Runtime (APR)** APR 是 Apache ...

    apr-1.4.6.tar.gz是apache服务器的依赖包之一.apr依赖包

    Apache服务器是全球最广泛使用的Web服务器,其稳定性和可扩展性深受开发者喜爱。在构建和维护Apache服务器时,经常会...在部署和维护Apache服务器时,理解和掌握APR的使用对于优化服务器性能和解决兼容性问题至关重要。

    linux下安装apache

    在配置安装参数时,可能会出现错误:error: APR not found. Please read the documentation。这是因为没有安装 apache 的关联软件 APR 和 APR-UTIL。 解决办法: 1. 下载 APR 和 APR-UTIL 的源文件: ...

    sqlite3 not found的解决办法

    记得在解决问题的过程中,要根据自己的具体操作系统和环境进行相应的调整。 此外,如果你在进行软件开发,特别是涉及到数据库操作时,了解如何与SQLite3交互是很有用的。SQLite3提供了丰富的命令行工具,可以用来...

    CentOS下编译php时的一些典型错误及解决办法.

    1. configure: error: xml2-config not found. Please check your libxml2 installation. 解决方法: yum install libxml2-devel 此错误是由于缺少 libxml2-devel 库文件所引起的。libxml2-devel 库文件是 PHP ...

    apr-1.5.2.tar.gz+apr-util-1.5.2.tar.gz

    在Apache的源代码目录中执行`./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util`,指定apr和apr-util的安装路径。 6. **继续编译Apache**:完成依赖设置后,可以继续执行`make`和`sudo ...

    apr-1.4.6.tar.gz、apr-iconv-1.2.1.tar.gz、apr-util-1.4.1.tar.gz

    4. 将APR和APR-Util的路径添加到Apache配置中,通常是在`httpd.conf`中指定`--with-apr`和`--with-apr-util`选项 通过理解和正确安装这些组件,你可以确保Apache在各种环境下稳定运行,并具备处理复杂Web需求的能力...

    ubuntu-version `GLIBC-2.25` not found.pdf

    根据提供的文件信息,文档标题“ubuntu-version `GLIBC-2.25` not found.pdf”以及描述“ubuntu_version `GLIBC_2.25` not found”,明确指出在Ubuntu系统上遇到了GLIBC 2.25版本未找到的问题。GLIBC(GNU C Library...

    Arm板Apache+PHP环境搭建

    在编译Apache服务器之前,需要编译三个必要的源码:pcre、apr和apr-util。这些源码分别需要编译两次,以生成x86和Arm两个不同的平台文件。最终的目的是为了移植到Arm开发板上。 二、编译pcre pcre是Perl-...

    apr-1.6.2.tar

    标题中的"apr-1.6.2.tar"指的是Apache Portable Runtime (APR)库的1.6.2版本的源代码文件,它被压缩成一个tar格式的档案。APR是一个由Apache软件基金会开发的C语言库,它提供了一组低级别的系统接口,用于跨平台的...

    Apache安装与配置[归类].pdf

    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...

    linux和windows:apr,apr-iconv和apr-util安装包

    3. 下载源码:访问Apache官网下载APR、APR-Iconv和APR-Util的最新源码包,如apr-1.5.x.tar.gz、apr-iconv-1.2.x.tar.gz和apr-util-1.6.x.tar.gz。 4. 解压源码:使用`tar -zxvf 文件名`解压下载的源码。 5. 配置、...

    apr-1.6.5.tar.gz

    标题中的"apr-1.6.5.tar.gz"是一个开源软件包,名为“Apache Portable Runtime”(简称APR)的版本1.6.5的源代码压缩文件。这个包是用tar和gzip命令进行压缩的,因此以".tar.gz"为后缀。在Linux环境中,这种格式的...

Global site tag (gtag.js) - Google Analytics