目标:
将之前主库上的SVN数据迁移到VisualSVN上,然后在实现版本库的远程自动备份, 版本库备份到另一台机器上。
- 整体思路:
步骤1
配置主svn环境,可以https访问 ,访问地址为:https://192.168.20.49:8443/svn/cehsi
配置从svn环境, 可以http访问,访问地址为:https://192.168.20.50:8443/svn/cehsi
VisualSVN服务器端安装
(版本不同安装方式基本相同)双击VisualSVN-Server-2.5.12.msi,然后点击“Next”下一步;
点击“Next”下一步
选择第一个,点击“Next”下一步
Location是VisualSVN Server安装路径,Repositories是版本库路径,port指定端口,
Use secure connection:是否用https安全连接;如果不改,点击“Next”下一步;
点击“install”继续安装
点击“Finish”安装完成
VisualSVN主备配置:
主库服务器:(IP:192.168.20.49)
1.首先将之前SVN版本库目录下的文件COPY到VisualSVN版本库C:\Repositories\目录下,刷新VisualSVN就可以看到;
2.添加用户,设置权限:
备份服务器:(IP: 192.168.20.50)
3.创建一个新的空库
4.创建用户,设置权限,与主库一致:
5.编辑pre-revprop-change文件,增加内容:
echo "Changing revision properties other than svn:log is prohibited" >&2
exit 0
这个文件存放路径:C:\Repositories\back_svn\hooks
6.用命令进行初始化:
初始化
svnsync init https://192.168.20.50:8443/svn/cehsi https://192.168.20.49:8443/svn/cehsi --username svnbak --password svnbak
如果新的库不为空 允许非空库同步(针对同步的备库不为空时使用) 请在init 后添加--allow-non-emptysvnsync init --allow-non-empty https://192.168.20.218:8443/svn/ahzj https://192.168.20.211:8443/svn/ahzj --username svnbak --password svnbak
https 需要认证 选择<p>
https://192.168.20.50:8443/svn/cehsi → 为备份库的地址 (视实际库路径而定)
https://192.168.20.49:8443/svn/cehsi → 为主库的ChekOut路径(视实际端口号而定)
如果不输入--username svn_back --password 111111,命令执行时会提示输入用户名密码,这时将之前创建的用户svn_back及密码输入
7.开始同步数据:
同步
svnsync sync https://192.168.20.50:8443/svn/cehsi --username svnbak --password svnbak
8.同步成功后,在回到主库编辑post-commit文件,实现事实提交同步;
编辑内容:
echo off
set SVN_HOME="D:\Program Files\VisualSVN Server"
%SVN_HOME%\bin\svnsync sync https://192.168.20.50:8443/svn/cehsi --config-dir "D:\Repositories\Config" --source-username svnbak --source-password svnbak --sync-username svnbak --sync-password svnbak
其中http://192.168.20.50:8443/svn/cehsi为备份库CheckOut路径
配置结束,以后每次commit时,数据都会备份到备份库中。
备份机器 手动bat
备机bat同步
d:
svnsync sync https://192.168.20.50:8443/svn/cehsi --username svnbak --password svnbak
经常遇到的问题
认证失败
D:\Program Files\VisualSVN Server\bin>svnsync sync https://192.168.20.50/svn/cehsi --config-dir "D:\Repositories\Config"
参考文档
http://blog.tentaclesoftware.com/archive/2010/01/24/73.aspx
报错svnsync: E175013: Access to '/svn/hyykt' forbidden
C:\Users\Administrator>svnsync init https://192.168.20.49:8443/svn/hyykt https://192.168.50.211:8443/svn/hyykt --username svnbak --password svnbak
svnsync: E170013: Unable to connect to a repository at URL 'https://192.168.50.211:8443/svn/hyykt'
svnsync: E175013: Access to '/svn/hyykt' forbidden
主服务器没有读写权限 设置权限即可
svnsync sync https://192.168.20.50:8443/svn/cehsi --config-dir "D:\Repositories\Config"
或者是 并没有给予这个项目,这个用户权限
报错
svnsync: E175008: While handling the 'svn:sync-lock' property on '/svn/hyykt/!svn/bln/0':
svnsync: E175008: Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
解决方案:
在hooks pre-revprop-change内填写如下内容
echo "Changing revision properties other than svn:log is prohibited" >&2
exit 0
报错 'svnsync' 不是内部或外部命令,也不是可运行的程序
解决方案,进入svn安装路径的bin目录 cd C:\Program Files (x86)\VisualSVN Server\bin 再次运行即可
报错
svnsync: E000022: Destination repository already contains revision history; cons
ider using --allow-non-empty if the repository's revisions are known to mirror t
heir respective revisions in the source repository
允许非空库同步(针对同步的备库不为空时使用)
svnsync init --allow-non-empty https://192.168.20.218:8443/svn/ahzj https://192.168.20.211:8443/svn/ahzj --username svnbak --password svnbak
添加 --allow-non-empty 即可
备注 Copied properties for revision 22187
表示已同步至 22187版本 开始同步即可进行下一步
报错svnsync: E000022: Couldn't get lock on destination repos after 10 attempts
解决方法
svn propdel svn:sync-lock --revprop-r0 https://192.168.20.218:8443/svn/truckCardPlatforms
解决后 进行初始化同步
svnsync init --allow-non-empty https://192.168.20.218:8443/svn/truckCardPlatforms https://192.168.20.211:8443/svn/truckCardPlatforms --username svnbak --password svnbak
Copied properties for revision 29610.
然后再同步即可