SVN migration is very simple, always go to the Internet, and now write one of them as a record.
Original blog from: www.51niux.com bo: Busy Firewood less
1. In order to migrate the server to build an environment consistent SVN service, we are yum installed, I'm easy here.
Yum Install Subversion-y
2. Export the SVN repository on the migration side, my library is a lot more so go for a for loop, here is a library example
Svnadmin Dump/data/sns/repo/admanager >/backup/svnbackup/admanager
#我的所有svn库都在 the/data/sns/repo/directory below
3. Send all the exported library files in the/backup/svnbackup to the prepared migration server and then create the directory and import
Cd/tmp/svnbackup #我把所有的库文件所在的目录svnbackup都传送到了/tmp directory below
Mkdir/data/sns/repo
Svnadmin Create/data/sns/repo/admanager
Svnadmin Load/data/sns/repo/admanager <admanager
4. Copy the authz,passwd,svnserve.conf files from the Conf file above the original server to the Conf of the target server's SVN repository.
5. Now that the SVN migration is complete, you can start the SVN offline test with the SVN client.
Svnserve-d-r/data/sns/repo/#启动svn服务
Original blog from: www.51niux.com bo: Busy Firewood less
This article from "Technology in the progress of sharing" blog, declined reprint!
Centos 5.8 SVN migration