Reputation: 12715
I must move my SVN to a new server, so I wanted to create its copy.
svnadmin create c:\backuprepo
echo exit 0 > c:\backuprepo\hooks\pre-revprop-change.bat
svnsync init file:///c:/backuprepo https://url/of/your/repository
svnsync sync file:///c:/backuprepo
and the copy was been done (I hope I've done it correctly). Then, I want to test it, so I want to checkout:
server_ip:8080/backuprepo
and I get the error:
Maybe the port number is wrong ? Any ideas how to fix it ?
according to the VonC's answer, I get that error:
SOLVED:
I had to additionally install the VisualSVN Server. Inside it, I've created the user account for the repository, then I run again all the scripts (the top of this topic). Aha, I had also set tup the 443 port number during the VisualSVN installation
Upvotes: 1
Views: 3009
Reputation: 1329572
If this is similar to this thread:
'D:\Development\SVN\Releases\TortoiseSVN-1.7.3\ext\subversion\subversion\libsvn_client\checkout.c'
line 94: assertion failed (svn_uri_is_canonical(url, pool))
then my guess is that the lack of a URI scheme and "
://
" prefix caused the assertion.
In other words, a https://server_ip:8080/backuprepo
address should work better.
Upvotes: 2