Edit: Your message is due to the fact you have created the destination repository with the newer version of the server, then tried to load the dump with the older version of svnadmin
. Read below for the correct procedure.
I don't understand the svnadmin load
part, have you created a dump file before with svnadmin dump
? That's your best option to port a repository across versions as normally the format should not change.
So you should do, on the version using the original repository (newest SVN version):
svnadmin dump <repos_path> > dump_file
and on the destination server (oldest SVN version):
svnadmin create <newrepos_path>
svnadmin load <newrepos_path> < dump_file
You may want to use the --deltas
option in the dump if you have a big repository, as those dumps can get pretty big.
If that's what you did and it failed, could you precise the respective versions and give a few more details?