首页 > 代码库 > CentOS 编译配置 apache
CentOS 编译配置 apache
Centos-7.x86_64下。
编译时可能提示:
checking for APR... noconfigure: error: APR not found. Please read the documentation.checking for APR-util... noconfigure: 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。