web-dev-qa-db-ja.com

Subversion Error:SVN:E120171:実行中のエラー:SSL通信中にエラーが発生しました

チェックアウト中にこのエラーが発生しています。

svn: E170013: Unable to connect to a repository at URL 'https://some.Host/some/repo/'
svn: E120171: Error running context: An error occurred during SSL communication
 _

$ svn --version.

svn, version 1.10.4 (r1850624)
   compiled Jul 28 2019, 02:44:06 on x86_64-pc-linux-gnu

Copyright (C) 2019 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.9 (compiled with 1.3.9)
  - handles 'http' scheme
  - handles 'https' scheme

The following authentication credential caches are available:

* Plaintext cache in /home/kusan/.Subversion
* Gnome Keyring
* GPG-Agent
* KWallet (KDE)
 _

この問題を解決するのを手伝ってください。私はDebian 10の新たなインストールにあります.Debian 9では、うまくいきました。前もって感謝します。

3
Kusan Biswas

Openssl.confを次のようにコピーします。

/home/username/openssl.conf
 _

これを変更してください:

# MinProtocol = TLSv1.1
MinProtocol = TLSv1
 _

それから:

export OPENSSL_CONF=/home/username/openssl.cnf
svn ls https://Subversion/svn/path
 _
1
Vicente Lima

私は2つの以前のソリューションの混合物を作りました、そしてそれは完全に機能します。

  1. ファイル/usr/lib/ssl/openssl.cnfを私の家に(私の場合は.cnf)をコピーする
  2. 。最初の答えでMadeleineで示されるようにファイルを変更する
  3. openssl_conf =〜/ openssl.cnfをエクスポートします

あなたの両方に感謝します:)

0
Asius Ice Sword