> we have old and new svn repositories. The new ones have fsfs as > backend. So i have to convert the old ones to fsfs, with svn dump/load?
Yes, it's quite straightforward. Do not forget to run "trac-admin <env> resync" once the new repository is up and running. svnadmin dump /path/to/svn/repos > /tmp/repos.svn # keep a copy of the original files in case something goes wrong... mv /path/to/svn/repos /path/to/svn/repos.old svnadmin create /path/to/svn/repos svnload /path/to/svn/repos < /tmp/repos.svn note that you are running an old SVN release, so you probably want to upgrade your svn packages first. If not, do not forget to use svnadmin create --fs-type fsfs /path/to/svn/repos as I believe the default repos type for svn 1.1 is a BDB backend I would recommend to use svn 1.4 if you are about to create a new repos. The repository size is much smaller on the host, along with many other improvements: see http://subversion.tigris.org/svn_1.4_releasenotes.html#svndiff1 BDB svn backend is known to have issues w/ Trac, so moving to FSFS is recommended anyway. -- Manu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
