I am getting below error, it checks out for a while then it throws me an error, SVN 1.6.
Could please let me know what exactly should be the configuration?
How are you hosting the Subversion server? Is it running behind Apache?
Assuming it's running behind Apache, check your Apache server logs. The error message is telling you that Apache disconnected the connection during your checkout. The error logs should give you the detail. It's probably a timeout that got triggered; check directives like KeepAlive
, MaxKeepAliveRequests
, TimeOut
, KeepAliveTimeOut
, MaxRequestsPerChild
, ThreadLimit
, MaxThreadsPerChild
, etc.
In my case Kaspersky blocks the connection. I just turned Kaspersky off and the checkout completes without problems.
try
svn cleanup
You may have a corrupted working copy.
I suggest checking out a brand new copy of the repository to see.
If the new checkout works without an error, patch over any changes from your old working copy and destroy the old one.
Another question asked a similar question, but there was no conclusive answer. A common theme in the answers seems to involve working copy corruption.