安装apache时checking for APR... no错误的解决方法
#./configure --prefix……检查编辑环境时出现:
安装APR(Apache Portable Runtime )
复制代码代码如下:
#tar -zxvf apr-1.4.6.tar.gz
# cd /apr-1.4.6 #./configure --prefix=/usr/local/apr #make #make install
再次检查编译环境出现
复制代码代码如下:
checking for APR-util... no
configure: error: APR-util not found . Please read the documentation. #./configure –help | grep apr-util --with-apr-util=PATH prefix for installed APU or the full path to
下载:http://download.chinaunix.net/download/0001000/472.shtml
之后到/oracle/http-2.4.2路径下
复制代码代码如下:
./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
#make make install
注意:Apache在安装时不会检查参数是否正确,错误的参数会直接被丢弃,不会报告给用户。但可以使用echo $?命令检查是否有错误,当输出结果为0时表示没有错误。
设置 apache 开机时自动启动
在#vi /etc/rc.d/rc.local 可以在本地输入127.0.0.1来测试apache是否已经启动。 (责任编辑:IT) |