You need to be Payday Loans UK Why would you

How to movie a Subversion Repository to Another Server.

It’s also possible for create copyes svn repositoryes or create svn backups.

$svnadmin dump /svnroot/repository > name.dmp

After that you can compress dump file and get it to your server where you want create copy of you repository.
Create a new repository:

$svnadmin create /svnroot/repository

import dump in new repository
$svnadmin load /svnroot/repository < name.dmp

Also you should to be shure you repository whis svn owner:

$chown -R svn:svn /svnroot/repository

It’s all!

PS: compare you config files.

Comments are closed.