apache 安装时error: the --with-apr parameter is in...

这是系统没带apr,得自己先装个。

下载apr-1.3.8.tar.gz和apr-util-1.3.8.tar.gz,

先装apr,

#tar xvf apr-1.3.8.tar.gz

#cd apr-1.3.8

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

#make

#make install

然后装apr-util.

#tar xvf apr-util-1.3.8.tar.gz

#cd apr-util-1.3.8

#./configure --prefix=/usr/local/apr-util-httpd --with-apr=/usr/local/apr-httpd

#make

#make install

你可能感兴趣的:(apache 安装时error: the --with-apr parameter is in...)