`
美丽的小岛
  • 浏览: 308159 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

apache安装configure: error: APR not found. Please read the documentation

 
阅读更多

本以为Apache的编译安装很简单,其实不然;

  以前的环境下编译报错很少 ,但这次不行了 

 提示configure: error: APR not found. Please read the documentation.


  经网上查阅资料才知道这是Apache的关联软件

  在apr.apache.org网站上可以下载此软件(apr-1.4.5.tar.gz);编译安装完成后;本以为就可以相安无事的进行Apache的安装 ;没想到 突然间报了个

    configure: error: APR-util not found. Please read the documentation

 然后就下载apr-util-0.9.19.tar.bz2进行编译安装

安装完成后再次进行Apache的编译安装 没想到又报错了


configure: error: APR version 1.3.0 or later is required
真的怒了  又看了下 ,主要是因为apr版本过低造成的,应该卸载相关旧版本后

安装新版本  我又下载了 apr-util-1.3.12.tar.gz


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

具体步骤如下:

1.解决apr not found问题——————>
APR和APR-UTIL的下载地址:http://apr.apache.org/download.cgi

   [root@yahoo test]# tar -zxf apr-1.4.5.tar.gz

   [root@yahoo apr-1.4.5]# ./configure --prefix=/usr/local/apr

   [root@yahoo apr-1.4.5]# make

   [root@yahoo apr-1.4.5]# make install

 2.解决APR-util not found问题>>>>

   [root@yahoo test]# tar -zxf apr-util-1.3.12.tar.gz

   [root@yahoo apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config

  [root@yahoo apr-util-1.3.12]# make
  [root@yahoo apr-util-1.3.12]# make install

3  ../configure仍提示APR-util not found,增加--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util后出现

configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/

 

#./configure –help | grep pcre

--with-pcre=PATH        Use external PCRE library

下载:http://sourceforge.net/projects/pcre
下载地址二:http://ftp.exim.llorien.org/pcre/

#unzip -o pcre-8.10.zip

#cd pcre-8.10

#./configure --prefix=/usr/local/pcre

#make

#make install

4.编译Apache

  [root@yahoo httpd-2.3.12-beta]# ./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/

 [root@yahoo httpd-2.3.12-beta]# make
 [root@yahoo httpd-2.3.12-beta]# make install

[root@yahoo httpd-2.3.12-beta]# /usr/local/apache2/bin/apachectl start

在IE中输入地址 ,显示

It works!

分享到:
评论

相关推荐

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

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

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

    Arm板Apache+PHP环境搭建

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

    Linphone编译错误及解决方法

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

    device-mapper.1.02.28.tgz

    在编译parted-3.2时,报错:configure: error: libdevmapper could not be found,找到device-mapper.1.02.28,并下了下来。 这个源码藏得有点深,分享出来给大家

    Linux环境apache安装

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

    sqlite3 not found的解决办法

    在使用Linux或Unix类操作系统时,可能会遇到"sqlite3 not found"这样的错误提示,这通常意味着系统中没有安装SQLite3这个数据库引擎或者其路径没有被正确地添加到系统的PATH环境变量中。SQLite3是一个轻量级、开源的...

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

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

    linux下安装apache

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

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

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

    libmount-2.32.tar.gz

    然而,当我们尝试编译和安装这个版本时,可能会遇到“configure: error: *** Could not find libmount”这样的错误提示,这通常是由于系统环境配置不完整或者依赖关系未满足所导致的。 首先,我们要明白“configure...

    ffmpeg-2.13 ubuntu安装配置文件 大全

    安装lame-3.98.4.tar.gz, 以免在第三步的时候出现ERROR: libmp3lame >= 3.98.3 not found错误, 需要提前安装lame. tar zvxf lame-3.98.4.tar.gz cd lame-3.98.4 ./configure --enable-shared make make ...

    svn安装过程中遇到错误需要的文件包

    错误 configure: error: could not find library containing RSA_new: 错误 configure: error: no XML parser was found: expat or libxml 2.x required 解放方法: ...

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

    本文将详细解析标题和描述中提到的几个关键压缩包:`apr-1.4.6.tar.gz`、`apr-iconv-1.2.1.tar.gz` 和 `apr-util-1.4.1.tar.gz`,这些都是Apache安装的重要组成部分。 首先,`apr-1.4.6.tar.gz` 是APR库的主要版本...

    sqlite3文件(sqlite3:not found 解决方法)

    sqlite3文件(用于解决安卓真机中sqlite3:not found的错误) http://blog.csdn.net/hust_twj/article/details/52212558

    CentOS编译安装PHP常见错误及解决办法

    2. 错误:`configure: error: xml2-config not found. Please check your libxml2 installation.` 解决方法:使用`yum -y install libxml2 libxml2-devel`安装libxml2及其开发库。 3. 错误:`configure: error: ...

    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

Global site tag (gtag.js) - Google Analytics