TortoiseSVN on Windows Server 2008 - Error Option 200 when checking out
I have recently setup a repository o开发者_如何学Pythonn one of my servers with TortoiseSVN.
I have created a repository in the following directory:
/C:\inetpub\wwwroot\Dev
On my local machine, when I try to check out this repository from the following URL, which I put in the URL of Repository, I get the following message.
http://the.path.tomyserver:21133/Dev/
The reason for the port number is because it is running on a virtual instance, and port identification is required for access to the instance.
I am getting the following error:
Error OPTIONS of 'http://the.path.tomyserver:21133/Dev/: 200 OK(http://the.path.tomyserver:21133)
It doesn't tell me anything additional.
I am lost on what to do next.
This usually happens if the server isn't set up correctly. Either WebDAV isn't configured or the location does not point to an SVN repository - either way, the WebDAV response to an OPTIONS request must not be "200".
I was able to figure out the problem, it turns out I did not have the web server actually configured to run Subversion even though I was running the service.
This turned out to be the first problem which was corrected by accessing the repository using the following path:
svn://the.path.tomyserver/dev
Additionally, my webserver was not configured to allow port 3699 through which is the default used by Subversion.
Once I opened this port, I was able to successfully checkout my repository.
精彩评论