centos5.4下安装apache+svn

1、首先下载apache2.2 下载地址:http://mirrors.sohu.com/apache/httpd-2.2.16.tar.gz

2、然后下载SVN

a) 包:subversion-deps-1.6.12.tar.gz

i. 地址:http://subversion.tigris.org/downloads/subversion-deps-1.6.12.tar.gz

b) susubversion-1.6.12.tar.gz  地址:

i. http://subversion.tigris.org/downloads/subversion-1.6.12.tar.gz 

3、然后解析Apache2,安装

4、tar -zxvf httpd-2.2.16.tar.gz

5、安装Apache

a) ./configure -prefix=/opt/web/apache2 --enable-mods-shared=all --enable-so

b) Make

c) Make install

6、检查APACHE是否安装成功:

启动apache:/opt/web/apache2/bin/apachectl start

7、安装Svn

8、首先解压: tar -zxvf subversion-deps-1.6.12.tar.gz

9、然后解压:tar -zxvf susubversion-1.6.12.tar.gz 

10、安装命令:

a) ./configure --prefix=/opt/web/subversion --with-apxs=/opt/web/apache2/bin/apxs --with-apr=/opt/web/httpd-2.2.16/srclib/apr  --with-apr-util=/opt/web/httpd-2.2.16/srclib/apr-util

11、make  make install



你可能感兴趣的:(centos5.4下安装apache+svn)