svn check out has issue Could not read chunk size

前端 未结 4 2038
鱼传尺愫
鱼传尺愫 2021-01-28 07:43

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?



        
相关标签:
4条回答
  • 2021-01-28 08:13

    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.

    0 讨论(0)
  • 2021-01-28 08:13

    In my case Kaspersky blocks the connection. I just turned Kaspersky off and the checkout completes without problems.

    0 讨论(0)
  • 2021-01-28 08:22

    try

    svn cleanup

    0 讨论(0)
  • 2021-01-28 08:24

    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.

    0 讨论(0)
提交回复
热议问题