本以为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问题——————>
[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.编译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完整安装及解决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、网络通信、内存...
2. **错误:configure: error: xml2-config not found. Please check your libxml2 installation.** 解决方案:对于CentOS,执行`yum -y install libxml2 libxml2-devel`;Debian用户则运行`apt-get install libxml...
1. configure: error: xml2-config not found. Please check your libxml2 installation. 解决方法: yum install libxml2-devel 此错误是由于缺少 libxml2-devel 库文件所引起的。libxml2-devel 库文件是 PHP ...
- **configure:error:APR not found. Please read the documentation.** - 解决方法:确保已经按照正确顺序安装了APR,并且指定了正确的安装路径。 - **configure:error:APR-util not found. Please read the ...
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...
13. configure: error:intltool not found 错误原因:缺少intltool。 解决方法:sudo apt-get install intltool Make错误: Git相关: 解决方法:sudo apt-get install git Make install: 解决方法:...
在编译parted-3.2时,报错:configure: error: libdevmapper could not be found,找到device-mapper.1.02.28,并下了下来。 这个源码藏得有点深,分享出来给大家
在使用Linux或Unix类操作系统时,可能会遇到"sqlite3 not found"这样的错误提示,这通常意味着系统中没有安装SQLite3这个数据库引擎或者其路径没有被正确地添加到系统的PATH环境变量中。SQLite3是一个轻量级、开源的...
./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr make sudo make install ``` 6. **启动httpd**:安装完成后,你可以启动httpd服务,测试是否成功: ```bash sudo /usr/local/apache2/bin/...
然而,当我们尝试编译和安装这个版本时,可能会遇到“configure: error: *** Could not find libmount”这样的错误提示,这通常是由于系统环境配置不完整或者依赖关系未满足所导致的。 首先,我们要明白“configure...
sqlite3文件(用于解决安卓真机中sqlite3:not found的错误) http://blog.csdn.net/hust_twj/article/details/52212558
错误 configure: error: could not find library containing RSA_new: 错误 configure: error: no XML parser was found: expat or libxml 2.x required 解放方法: ...
安装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 ...
2. 错误:`configure: error: xml2-config not found. Please check your libxml2 installation.` 解决方法:使用`yum -y install libxml2 libxml2-devel`安装libxml2及其开发库。 3. 错误:`configure: error: ...
2. 进入apr-1.4.6目录,执行configure命令 3. 执行make命令 4. 执行make install命令 四、编译apr-util apr-util是apr utility library的缩写,是一个apr实用工具库。编译apr-util需要执行以下步骤: 1. 解压apr-...
在配置安装参数时,可能会出现错误:APR-util not found. Please read the documentation. 解决方案: 1. 下载 PCRE 的源文件: http://ftp.exim.llorien.org/pcre/ 2. 解压缩 PCRE 的源文件: tar -zxf pcre-...
编译安装apache 2.4.2 代码如下: sudo echo ‘start’ echo 常见错误: echo configure: error: APR not found. Please read the documentation. echo 解决办法: wget ...
1、httpd-2.4.41.tar 2、apr-1.7.0.tar 报错: rm: cannot remove `libtoolT': No such file or directory ..../configure --prefix=/usr/local/apache --with-apr=/usr/local/apr/ --with-apr=/usr/local/apr
2. 配置源代码:`./configure --prefix=/usr/local/apr`(对于每个包) 3. 编译和安装:`make && make install` 4. 将APR和APR-Util的路径添加到Apache配置中,通常是在`httpd.conf`中指定`--with-apr`和`--with-apr...