①解压Apache
进入到该安装包的保存路径后,通过下面的命令进行解压(解压位置: ../bulid/)
tar zxvf httpd-2.2.9.tar.gz -C ../bulid/
②编译
./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --enable-mods-shared --enable-ssl
make
③安装
make install
④查看是否安装成功
/usr/local/apache2/bin/httpd -k start --启动Apache
lsof -i:80 --查看80端口状态,如果80端口有值,安装成功
注:编译或安装过程中可能会因缺少某些文件而导致error
则根据error提示的信息,先安装缺少的文件再重新编译安装
error例;
configure: error: ...No recognized SSL/TLS toolkit detected
通过命令 「aptitude search 查找内容」查找相应的文件
通过命令 「aptitude install 安装文件名」进行安装
posted on 2012-01-18 21:49
大鸟 阅读(132)
评论(0) 编辑 收藏 所属分类:
linux