1、Apache下载
版本2.2.29 最新2.4.18
http://www.apache.org/dyn/closer.cgi
2、解压
tar jxf httpd-2.2.29.tar.bz2
cd http-2.2.29
3、配置
./configure \
echo $? #检查
make #编译
make install #安装
--prefix 指定安装目录
--with-included-apr \ #依赖包
/usr/local/apache2/bin/apachectl start #启动Apache
.