Apache2.2.9 安装

来源:互联网 发布:you know nothing 知乎 编辑:程序博客网 时间:2024/05/29 06:51

Red Hat Enterprise Linux Server release 5 (Tikanga)

apr-1.3.2.tar.gz

apr-util-1.3.2.tar.gz

httpd-2.2.9.tar.gz

安装:

·apr

#tar -zxvf apr-1.3.2.tar.gz
#cd apr-1.3.2
#./configure --prefix=/usr/java/apr-httpd/
#make
#make install

·apr-util

#tar -zxvf apr-util-1.3.2.tar.gz
#cd apr-util-1.3.2
#./configure --prefix=/usr/java/apr-util-httpd/ --with-apr=/usr/java/apr-httpd/
#make
#make install

 

·apache

#tar -zxvf httpd-2.2.9.tar.gz
#cd httpd-2.2.9
#./configure --prefix=/usr/java/apache22 /
--with-apr=/usr/java/apr-httpd /
--with-apr-util=/usr/java/apr-util-httpd /
--enable-so /
--enable-rewrite /
--enable-vhost-alias /
#make

原创粉丝点击