Loaded a footer dump but it is not available
I got an SVN repository dump file that I am pushing to my server. Let's call it myserver.com/svn. The load statement produces a long list of loaded files and does not report an error. However, as soon as I try to access the repository to checkout, or move my existing checkout, I was told:
Repository moved temporarily to 'http://www.myserver.com/svn'; please relocate
In other words, my new repository reports that it has moved to itself temporarily. How do I get past this? I can't find anything about this post in the documentation for the svnadmin load command.
source to share
subversion generates a UUID (universally unique identifier) whenever it creates a repository. I believe that in order to use the UUID from your original repo, you need to add the "--force-uuid" command to the svnadmin boot command.
http://svnbook.red-bean.com/en/1.5/svn.ref.svnadmin.c.load.html
source to share
Perhaps your server is configured to redirect all errors to the location (i.e. to the home page). The line you should be looking for will be named something like
ErrorDocument 404 http://www.myserver.com/svn
SVN appears to be using 404 (not found) errors to add new resources. You have to let this get through instead of redirecting, or svn will get confused.
source to share