subversion(以下简称svn)是近年来崛起的版本管理工具,是cvs的接班人
SVN服务器有2种运行方式:
1、独立服务器(例如:svn://xxx.com/xxx);
2、借助apache (例如:http://svn.xxx.com/xxx);
为了不依赖apache,我选择第一种方式:独立的svn服务器。
SVN存储版本数据也有2种方式:
1、bdb;
2、fsfs。
由于bdb方式在服务器中断时,有可能锁住数据,所以还是fsfs方式更安全一点,我也选择这种方式。
具体部署:
1.下载subversion安装包[[email protected] ~]# cd /usr/local/src
[[email protected] src]# ls
[[email protected] src]# wget
http://subversion.tigris.org/downloads/subversion-1.6.6.tar.gz
[[email protected] src]# wget http://subversion.tigris.org/downloads/subversion-deps-1.6.6.tar.gz
[[email protected] src]# tar xfvz
subversion-1.6.6.tar.gz
[[email protected] src]# tar xfvz
subversion-deps-1.6.6.tar.gz
[[email protected] src]# cd subversion-1.6.6
[[email protected] subversion-1.6.6]#
2.编译SVN
首先检测系统有没有安装SSL:[[email protected] subversion-1.6.6]# find / -name
opensslv.h
[[email protected] subversion-1.6.6]#
找不到,就执行如下命令进行安装:[[email protected]
subversion-1.6.6]# yum install openssl
[[email protected] subversion-1.6.6]# yum install
openssl-devel
安装之后用find / -name
opensslv.h命令找到opensslv.h所在的目录,即下列--with-openssl=后面的路径,编译:
[[email protected] subversion-1.6.6]# find / -name
opensslv.h
/usr/include/openssl/opensslv.h
[[email protected] subversion-1.6.6]# ./configure
--prefix=/usr/local/svn --with-openssl=/usr/include/openssl --without-berkeley-db
注:以svnserve方式运行,不加apache编译参数。以fsfs格式存储版本库,不编译berkeley-db。
此时编译报如下错误:
configure: WARNING: unrecognized options:
--with-openssl
configure: Configuring Subversion 1.6.6
configure: creating config.nice
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in
`/usr/local/src/subversion-1.6.6‘:
configure: error: no acceptable C compiler
found in $PATH
See `config.log‘ for more details.
说明没有安装gcc相关库,使用如下命令安装gcc后再编译:
[[email protected] subversion-1.6.6]# yum -y install
gcc
[[email protected] subversion-1.6.6]# ./configure
--prefix=/usr/local/svn --with-openssl=/usr/include/openssl
--without-berkeley-db
最后出现下面WARNING,直接忽略即可,因为不使用BDB存储。configure: WARNING: we have configured without BDB
filesystem support
You don‘t seem to have Berkeley DB version
4.0.14 or newer
installed and linked to APR-UTIL. We have
created Makefiles which
will build without the Berkeley DB back-end;
your repositories will
use FSFS as the default back-end. You can find
the latest version of
Berkeley DB here:
http://www.sleepycat.com/download/index.shtml
3.安装SVN
为避免出现以下错误
error while loading shared libraries:
libiconv.so.2: cannot open shared object file: No such file or directory
先执行以下操作:
1)、编辑/etc/ld.so.conf文件,添加下面一行:
/usr/local/lib
2)、保存后运行ldconfig:
/sbin/ldconfig
注:ld.so.conf和ldconfig用于维护系统动态链接库。
安装
[[email protected] subversion-1.6.6]# make
&& make install
安装完成,执行以下命令测试:
[[email protected] subversion-1.6.6]#
/usr/local/svn/bin/svnserve --version
svnserve,版本1.6.6 (r40053)
编译于Feb 15 2012,22:15:26
版权所有(C)
2000-2009 CollabNet。
Subversion 是开放源代码软件,请参阅http://subversion.tigris.org/ 站点。
此产品包含由CollabNet(http://www.Collab.Net/)
开发的软件。
下列版本库后端(FS) 模块可用:
* fs_fs : 模块与文本文件(FSFS)版本库一起工作。
为了方便下操作,下面将SVN的BIN添加到PATH,编辑/etc/profile,添加:
PATH=/usr/local/svn/bin:$PATH
保存后,使其立即生效:
source /etc/profile
4.配置SVN
建立版本库目录,可建多个:
[[email protected] ~]# mkdir -p /home/svndata/repos
#建立版本库
[[email protected] ~]# /usr/local/svn/bin/svnadmin
create /home/svndata/repos #修改版本库配置文件
vi编辑/home/svndata/repos/conf/svnserve.conf,内容修改为:
[general]
anon-access = none
auth-access = write
password-db = /usr/local/svn/conf/passwd.conf
authz-db = /usr/local/svn/conf/authz.conf
realm = repos
如果多个版本库那么就vi编辑/home/svndata/repos2/conf/svnserve.conf
除realm = repos2外,其他与版本库1配置文件完全相同。如果有更多的版本库,依此类推。
查看日志信息时出现no date的处理方法 将下面设为none一般可以解决。 anon-access = none
注意:对用户配置文件的修改立即生效,不必重启svn。
配置允许访问的SVN用户:
文件格式如下: [users]
<用户1> = <密码1>
<用户2> = <密码2>
其中,[users]是必须的。下面列出要访问svn的用户,每个用户一行。
在/usr/local/svn/下面新建conf目录,并在/usr/local/svn/conf内新建passwd.conf和authz.conf文件:
mkdir conf
cd conf/
touch passwd.conf
touch authz.conf
添加用户及密码:[[email protected]
~]# useradd wll
[[email protected] ~]# passwd wll
编辑/usr/local/svn/conf/passwd.conf,添加如下代码并保存:
[users]
wll = 123456
配置svn用户访问权限,编辑usr/local/svn/conf/authz.conf,添加如下代码并保存:
[groups]
admin = wll
[/]
@admin = rw
# [repos:/abc/aaa]
# king = rw
# [repos:/pass]
# king =svn
注意:
* 权限配置文件中出现的用户名必须已在用户配置文件中定义。
* 对权限配置文件的修改立即生效,不必重启svn。
用户组格式:
[groups]
<用户组名> = <用户1>,<用户2>
其中,1个用户组可以包含1个或多个用户,用户间以逗号分隔。
版本库目录格式:
[<版本库>:/项目/目录]
@<用户组名> = <权限>
<用户名> = <权限>
其中,方框号内部分可以有多种写法:
[/],表示根目录及以下,根目录是svnserve启动时指定的,我们指定为/home/svndata,[/]就是表示对全部版本库设置权限。
[repos:/] 表示对版本库repos设置权限;
[repos:/abc] 表示对版本库repos中的abc项目设置权限;
[repos:/abc/aaa] 表示对版本库repos中的abc项目的aaa目录设置权限;
权限主体可以是用户组、用户或*,用户组在前面加@,*表示全部用户。
权限可以是w、r、wr和空,空表示没有任何权限。
启动svn:
建立启动svn的用户:
[[email protected] ~]# useradd svn
[[email protected] ~]# passwd svn
根据提示为用户svn设置密码
允许用户svn访问版本库:[[email protected] ~]# chown -R svn:svn
/home/svndata
启动svn:[[email protected] ~]# su - svn -c "svnserve -d
--listen-port 9999 -r /home/svndata"
其中:
su - svn :表示以用户svn的身份启动svn;
-d :表示以daemon方式(后台运行)运行;
--listen-port 9999 :表示使用9999端口,可以换成你需要的端口。但注意,使用1024以下的端口需要root权限;
-r /home/svndata :指定根目录是/home/svndata。
检查:
ps -ef|grep svnserve
如果显示如下,即为启动成功:
svn 6941 1 0 19:11 ? 00:00:00 svnserve -d –listen-port 9999 -r /opt/svndata
5.将svn加入到开机启动
编辑/etc/rc.d/rc.local文件,加入如下启动命令:/usr/local/svn/bin/svnserve -d --listen-port
9999 -r /home/svndata
如果想停止svn,则使用如下命令:
killall svnserve
6.连接SVN
安装TortoiseSVN,重启系统。启动TortoiseSVN并在地址栏中输入svn://ip:9999/repos