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

Posted mercury-linux

tags:

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

linux安装时安装种类不同,一些组件包可能不会被安装,导致linux下安装软件的时候缺这个缺那个,今天为大家介绍linux安装apache时报apr找不到的解决办法

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

  1. 技术图片
  2. 2

    解压依赖包

    tar -xzvf apr-1.4.5.tar.gz

    tar -xzvf apr-util-1.3.12.tar.gz

    tar -xzvf pcre-8.10.zip

    技术图片
  3. 3

    安装apr-1.4.5

    进入安装目录

    cd /opt/apr-1.4.5/

    安装及编译

    ./configure --prefix=/usr/local/apr

    make && make install

    技术图片
  4. 4

    后面可能还会出现找不到apr-util

    进入安装目录

    cd /opt/apr-util-1.3.12/

    安装及编译

    ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config

    make && make install

    技术图片
  5. 5
    后面可能还会出现找不到pcre

    进入安装目录

    cd /opt/pcre-8.10/

    安装及编译

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

    make && make install

    技术图片
  6. 6

    重新安装apache

    进入安装目录

    cd /opt/httpd-2.4.10/

    安装及编译

    需要用--with参数指定我们刚才安装的依赖包位置

    ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

    make && make install

    技术图片
    END

以上是关于apache安装错误error: APR not found解决办法的主要内容,如果未能解决你的问题,请参考以下文章

SHELL脚本安装apache,解决configure: error: APR not found

解决安装Apache中出现checking for APR... no configure: error: APR not found. Please read the documentation的

Apache安装问题:configure: error: APR not found . Please read the documentation

Linux系统安装httpd报错“configure: error: APR not found. Please read the documentation.“

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

Linux centOS编译安装Apache报APR not found.错误的解决办法