Svn 颠覆错误E120105“;不正确的HTTP响应“;

Svn 颠覆错误E120105“;不正确的HTTP响应“;,svn,Svn,这个问题类似于 当我尝试将/mkdir提交到存储库时,svn失败,原因是: svn: E120105: Error running context: The server sent an improper HTTP response Subversion客户端详细信息v1.8.10: $ svn --version svn, version 1.8.10 (r1615264) compiled Aug 9 2015, 13:48:39 on x86_64-pc-linux-gnu C

这个问题类似于

当我尝试将/mkdir提交到存储库时,svn失败,原因是:

svn: E120105: Error running context: The server sent an improper HTTP response
Subversion客户端详细信息v1.8.10

$ svn --version
svn, version 1.8.10 (r1615264)
   compiled Aug  9 2015, 13:48:39 on x86_64-pc-linux-gnu

Copyright (C) 2014 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - using serf 1.3.8
  - handles 'http' scheme
  - handles 'https' scheme
这是服务器详细信息v1.6.17

$ svnadmin --version
svnadmin, version 1.6.17 (r1128011)
   compiled Aug 13 2014, 20:41:52

Copyright (C) 2000-2009 CollabNet.
Subversion is open source software, see http://subversion.apache.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository back-end (FS) modules are available:

* fs_base : Module for working with a Berkeley DB repository.
* fs_fs : Module for working with a plain file (FSFS) repository.
我已经尝试了上一个问题中的解决方案,
~/.subversion/servers
文件包含该行

http-bulk-updates = yes
但它没有效果

另一方面,服务器能够接受来自
svnv1.6+ra_neon的提交


有什么想法,如何纠正吗?

我也遇到了同样的问题,而且无法使用http批量更新来解决它。就我而言,这似乎是由我公司的代理人引起的。基本上,我的想法是:如果代理/防病毒/etc干扰了SVN客户机和服务器之间的HTTP通信,那么让我们简单地使用SSL隐藏它。这为我解决了问题

如果您使用的是apache2和mod_dav_svn,我推荐这篇文章:


请注意,如果您的存储库位置为svn://... 或http://... 你可能得搬到别的地方去https://... 之后。

我将尝试升级到服务器上的ssl主机,然后查看解决方案是否有效。谢谢你摆姿势。