Re: Need help in Subversion migration

2021-05-18 Thread Bo Berglund
On Mon, 17 May 2021 17:15:13 -0400, David Newman wrote: >> A few years back I replicated our live SVN repository, to get a backup, by >> using >> a dump followed by a load on the replication server. The dump files were >> moved >> over the Internet in tgz files before being used to load onto th

Re: Need help in Subversion migration

2021-05-18 Thread jackson
awesome thorsten , it worked :) Thanks & regards, Jackson J On Tue, May 18, 2021 at 7:13 PM Thorsten wrote: > correction > > *will N O T be picked correctly > Am 18/05/2021 um 15:40 schrieb Thorsten: > > Hello, > > Either bypass svn completly (do not use svadmin create and just rsync or > just

Re: Need help in Subversion migration

2021-05-18 Thread Thorsten
correction *will N O T  be picked correctly Am 18/05/2021 um 15:40 schrieb Thorsten: Hello, Either bypass svn completly (do not use svadmin create and just rsync or just use tools provided by svn and do not rsync. Your mixture cannot work: svnadmin creates an empty repo: srync copys files

Re: Need help in Subversion migration

2021-05-18 Thread Thorsten
Hello, Either bypass svn completly (do not use svadmin create and just rsync or just use tools provided by svn and do not rsync. Your mixture cannot work: svnadmin creates an empty repo: srync copys files into that repo, but these files belongs to your old repo, not to the new one, so they w

Re: Need help in Subversion migration

2021-05-18 Thread jackson
Hello Everyone , I did a rsync , but it looks like it is not working . Below are the steps i followed for rsync *commands run on the new svn server(1.10)* svnadmin create /subversion/repos/idea chown -R apache /subversion/repos/idea rsync -a username@sourceserver:/subversion/repos/idea /su