码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 编译配置 apache

时间:2014-09-23 14:20:34      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   div   

Centos-7.x86_64下。

 

编译时可能提示:

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

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

这两样我用yum安装后,仍然会提示找不到

只得手动下载安装apr

# wget -c http://www.eu.apache.org/dist//apr/apr-1.5.1.tar.gz
# tar -zxvf apr-1.5.1.tar.gz
# cd apr-1.5.1
# ./configure --prefix=/usr/lib/apr
# make && make install

  apr-util:

# wget -c http://www.eu.apache.org/dist//apr/apr-util-1.5.4.tar.gz
# cd apr-util-1.5.4
# ./configure --prefix=/usr/lib/apr-util --with-apr=/usr/lib/apr
# make && make install

  特别说明:apr-util如果安装错了删除掉安装目录重装的话,可能出现以下错误,只需在解压目录 make clean 一下再继续  

   libtool: install: error: cannot install `libaprutil-1.la‘ to a directory not ending in /usr/***

 

  然后:

# ./configure --prefix=/usr/local/apache --enable-mods-shared=most --enable-mods-shared=all --enable-modules=so --enable-proxy=shared --enable-proxy_connect=shared --enable-headers=shared --with-apr=/usr/lib/apr --with-apr-util=/usr/lib/apr-util

  我的PCRE为shared。

 

CentOS 编译配置 apache

标签:style   blog   http   color   io   os   ar   for   div   

原文地址:http://www.cnblogs.com/antarctican/p/3988067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!