一、下载apache源码包
1.下载地址:http://httpd.apache.org/download.cgi,下载 httpd-2.4.20.tar.gz
2.上传到服务器目录,/tmp/
解压:tar -zxvf httpd-2.4.20.tar.gz
进入目录:cd httpd-2.4.20
3.编译刚刚解压的源文件,
配置编译参数:
./configure –prefix=/usr/local/apache24/ (配置安装目录 /usr/local/apache24/)
4.正常执行 (说明你的linux安装过apache,或者已经安装了所需的依赖包。)
make
make install
错误信息:
*checking for APR… no
configure: error: APR not found. Please read the documentation.*
解决方案:
二、安装apr
Apache在安装时需要一些准备环境,这里需要安装另外一个东西 APR(Apache Portable Runtime)。
下载地址: http://archive.apache.org/dist/apr/ 同样找最新版本
得到文件:apr-1.5.2.tar.gz
解压:tar -zxvf apr-1.5.2.tar.gz
cd /usr/local/installers/apr-1.5.2
./configure --prefix&#