Windows 7 上的 Subversion edge ldap_simple_bind_s 失败

Windows 7 上的 Subversion edge ldap_simple_bind_s 失败

我正在使用 TortoiseSVN 连接到我的 subversionedge 服务器进行源代码控制。

一直都正常,直到我们的一个主交换机被重置,并更改了我们几个服务器的 IP 地址。长话短说,我已将所有 IP 改回其原始地址,但我不知道为什么这会影响与 subversionedge svn 服务器的连接。

当我尝试从 tortoiseSVN 连接到我的存储库时,现在出现此错误

无法连接到 URL 处的存储库 服务器在响应 OPTIONS 请求时发送了意外的返回值(500 内部服务器错误)

以下是服务器日志

[Sat Mar 16 23:38:09 2013] [info] [client 192.168.168.72] Connection closed to child 63 with standard shutdown (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:09 2013] [info] [client 192.168.168.72] Connection to child 63 established (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:09 2013] [info] Seeding PRNG with 144 bytes of entropy
[Sat Mar 16 23:38:09 2013] [info] Initial (No.1) HTTPS request received for child 63 (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:09 2013] [info] Subsequent (No.2) HTTPS request received for child 63 (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:09 2013] [info] [client 192.168.168.72] [7508] auth_ldap authenticate: user pyae authentication failed; URI /svn/Software [LDAP: ldap_simple_bind_s() failed][Server Down]
[Sat Mar 16 23:38:09 2013] [info] [client 192.168.168.72] Connection closed to child 63 with standard shutdown (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] [client 192.168.168.72] Connection to child 63 established (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] Seeding PRNG with 144 bytes of entropy
[Sat Mar 16 23:38:10 2013] [info] Initial (No.1) HTTPS request received for child 63 (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] [client 192.168.168.72] Connection to child 62 established (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] Seeding PRNG with 144 bytes of entropy
[Sat Mar 16 23:38:10 2013] [info] Initial (No.1) HTTPS request received for child 62 (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] [client 192.168.168.72] Connection closed to child 62 with standard shutdown (server ASIS-NVR.sharepoint.com:443)
[Sat Mar 16 23:38:10 2013] [info] [client 192.168.168.72] Connection closed to child 63 with standard shutdown (server ASIS-NVR.sharepoint.com:443)


<Location /svn/>   
   DAV svn
   SVNParentPath "F:/csvn/data/repositories"
   SVNReposName "CollabNet Subversion Repository"
  AuthzSVNAccessFile "F:\csvn\data/conf/svn_access_file"
  SVNListParentPath On
  Allow from all
  AuthType Basic
  AuthName "CollabNet Subversion Repository"
  AuthBasicProvider  ldap-users
  Require valid-user
</Location>

答案1

相关错误是这个:

auth_ldap authenticate: user pyae authentication failed; URI /svn/Software [LDAP: ldap_simple_bind_s() failed][Server Down]

它无法访问 LDAP 服务器,或者为 BindDN 提供的凭据不再有效。

相关内容