4

I'm using Visual SVN on a server.

Fresh install. Create a new repository. Try to connect using a client

it comes up with "Repository moved permanently to 'https://x.x.x.x:6443/'; please relocate"

I got a feeling it has to do with the IP address that clients use to connect is not the same as the one the server is running on? not sure.

5 Answers5

6

This message means that you are using invalid repository URL. VisualSVN Server repository url looks like http://servername/svn/repos/path. I recommend you to use Copy URL command in VisualSVN Server Manager to get right URL.

Ivan Zhakov
  • 1,866
2

See if this helps you in resolving this problem.

http://subversion.tigris.org/faq.html#http-301-error

0

FYI: I got this error when I had defined an alias to allow for listing of repositories:


Alias /svn "/var/svn/repos"

<Location /svn/>
  SVNParentPath /var/svn/repos
  SNVListParentPath on
  ....
</Location>

Without the Alias, I would get "Not Found" when browsing to /svn, whereas /svn/ would work.

So it seems a fix for one bug caused another one!

This problem is discussed in the link Critical Skill posted.

0

I had the same problem. Try changing the SVNParentPath to SVNPath in your httpd.conf file. This is my configuration:

<Location /svn>
   DAV svn
   SVNPath C:\svn_repository\proj1
</Location>

and works fine.

I'm checking the differences between SVNPath and SVNParentPath.

Michael Hampton
  • 252,907
JABDLP
  • 1
0

try using svn switch to switch it to the IP address.