先来对svn做一下安装
下载svn:
http://subversion.tigris.org/downloads/subversion-1.6.15.tar.bz2
http://subversion.tigris.org/downloads/subversion-deps-1.6.15.tar.bz2
下载后分别解压
tar jxvf subversion-1.6.15.tar.bz2
tar jxvf subversion-deps-1.6.15.tar.bz2
安装svn,如果没有安装openssl,会有问题try --with-openssl
所以先安装
zypper in openssl
zypper in openssl-devel
安装完
cd subversion-1.6.15
./configure --prefix=/usr/local/svn
make
make install
svn安装完毕
先简单创建一个库
mkdir -p /opt/svndata/testrepo
svnadmin create /opt/svndata/testrepo
cd /opt/svndata/testrepo/conf
vi svnserve.conf
把下面几个#去掉
password-db = passwd
authz-db = authz
use-sasl = true
vi authz
[groups]
admin = lava,testuser #admin组 lava,testuser为组内成员
user=test #user组
[/]
@admin = rw #admin组读写权限
@user=r #user组只读权限,其他人不能访问
vi passwd
[users]
lava=123456 #用户名=密码
testuser=123456
test=123456
配置完后启动svn
svnserve -d -r /opt/svndata/testrepo
启动成功,就可以使用svn了
客户端windows可以使用TortoiseSVN,安装不说了
安装完成后选择要导入文件夹,右键单击--》TortoiseSVN--》import
如后URL里面输入
svn://ip:port/目录名
默认端口为3690
svn启动时更改默认端口用--listen-port 端口
其他用svnserve -h查看帮助
个人转载备注:
1.
在以上编译过程中可能会出现 configure: error: Subversion requires SQLite
可以http://www.sqlite.org/sqlite-amalgamation-3.6.13.tar.gz 可以下载到最新的Sqlite版本sqlite-amalgamation-3.6.13.tar.gz安装 Sqlite3.6.13
可以http://www.sqlite.org/sqlite-amalgamation-3.6.13.tar.gz 可以下载到最新的Sqlite版本sqlite-amalgamation-3.6.13.tar.gz安装 Sqlite3.6.13
tar zxvf sqlite-amalgamation-3.6.13.tar.gz 进入文件夹sqlite-amalgamation找到sqlite3.c将其复制到
subversion-1.6.2/sqlite-amalgamation/sqlite3.c
2.ps -aux | grep svnserver 查看svn服务进程,kill ID 进行终止
3.svnserve.conf 中 anon-access = read 默认,改为anon-access = none ,检出需要用户名