+ -
当前位置:首页 → 问答吧 → linux下SVN的简单安装

linux下SVN的简单安装

时间:2009-06-05

来源:互联网

适用于小团队的代码版本控制,在自己的本地配置一台服务器就OK。
下面是在linux系统下的简单SVN安装,使用apache服务器来运行SVN,经本人测试成功。(请先下载需要安装的文件包),步骤如下:


1.安装apache
--------------------------------------------------------------------
#tar zxvf httpd-2.2.9.tar.gz
#cd httpd-2.2.9
#./configure --prefix=/usr/local/apache2 --enable-so --enable-dav
#make
#make install
apache 安装完毕
--------------------------------------------------------------------

2.安装svn
--------------------------------------------------------------------
#tar zxvf subversion-1.4.0.tar.gz
#tar zxvf subversion-deps-1.4.0.tar.gz
#cd subversion-1.4.0
#./configure --with-apxs=/usr/local/apache2/bin/apxs --with-apr=/usr/local/apache2/ --with-apr-util=/usr/local/apache2/ --prefix=/usr/local/subversion --with-ssl --with-zlib --enable-maintianer-mode
#make
#make install
svn 安装完毕
--------------------------------------------------------------------

3.建立版本库
#mkdir /repository
#cd /usr/local/subversion/bin/
#./svnadmin create /repository/test            

------------------------------------------------+
+测试apache                                     +
+测试版本库                                     +
+------------------------------------------------

http://192.168.0.2/
出现 it's works! 证明apache 安装成功

#ls cd /repository/test/
出现 conf  dav  db  format  hooks  locks  README.txt 文件 证明svn安装成功


4.修改版本库文件权限
---------------------------------------------------------------------
#chmod -R 777 /repository
---------------------------------------------------------------------


5.修改http.conf
---------------------------------------------------------------------
#vi /usr/local/apache2/conf/httpd.conf

在最后添加
<Location /svn>
DAV svn
SVNParentPath /repository/
</Location>
---------------------------------------------------------------------


最后测试
http://192.168.0.2/svn/test

出现如下:

Revision 0: /

--------------------------------------------------------------------------------
Powered by Subversion version 1.4.0 (r21228).

证明安装成功

作者: 从头再来   发布时间: 2009-06-05

学习下

作者: nianjin   发布时间: 2009-06-07

热门下载

更多