web-dev-qa-db-ja.com

GnuTLS受信エラー(-110):TLS接続が不適切に終了されました

Vimrcを設定した後、vundleで vim plugin をインストールする準備をしています

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim

call vundle#begin()

Plugin 'gmarik/Vundle.vim'
Plugin 'valloric/youcompleteme'

call vundle#end()

次に:PluginInstallを入力してエラーを取得します

  2 [2018-09-27 10:47:17] Plugin valloric/youcompleteme                                                | 18 " line enables syntax highlighting by default.
  3 [2018-09-27 10:47:17] $ git clone --recursive 'https://github.com/valloric/youcompleteme.git' '/roo| 19 syntax on;
    t/.vim/bundle/youcompleteme'                                                                       | 20 if has("syntax")
  4 [2018-09-27 10:47:17] > Cloning into '/root/.vim/bundle/youcompleteme'...                          | 21   syntax on
  5 [2018-09-27 10:47:17] > error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was| 22 endif
     non-properly terminated. 

次に、ディレクトリ~/.vim/bundleに移動して実行します

git clone --recursive 'https://github.com/valloric/youcompleteme.git

そしてこれを入手

Cloning into '~/.vim/bundle/youcompleteme'...
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 34431 (delta 4), reused 8 (delta 1), pack-reused 34416
Receiving objects: 100% (34431/34431), 32.58 MiB | 2.37 MiB/s, done.
error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated.
Resolving deltas: 100% (12305/12305), done.

this が言ったように、エラーにもかかわらずプラグインがダウンロードされたようです。しかし、実際にはyoucompletemeディレクトリが見つかりません。

私もやってみます

git clone --recursive '[email protected]:Valloric/YouCompleteMe.git' '~/.vim/bundle/youcompleteme'

そしてこれを入手

Cloning into '~/.vim/bundle/youcompleteme'...
ssh: connect to Host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

これを解決するにはどうすればよいですか?

3
G.yx

Gitを再コンパイルしてインストールし、最終的に解決します。手順は次のとおりです。

Sudo apt-get install build-essential fakeroot dpkg-dev -y
Sudo apt-get build-dep git -y
Sudo apt-get install libcurl4-openssl-dev -y
cd ~
mkdir source-git
cd source-git/
apt-get source git
cd git-2.*.*/
sed -i -- 's/libcurl4-gnutls-dev/libcurl4-openssl-dev/' ./debian/control
sed -i -- '/TEST\s*=\s*test/d' ./debian/rules
dpkg-buildpackage -rfakeroot -b -uc -us
Sudo dpkg -i ../git_*ubuntu*.deb

-yは使用しないでください。yの入力をスキップするためだけに-yを使用できます。結果は次のとおりです。

Cloning into 'syntastic'...
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 18671 (delta 9), reused 16 (delta 5), pack-reused 18644
Receiving objects: 100% (18671/18671), 4.26 MiB | 701.00 KiB/s, done.
Resolving deltas: 100% (10572/10572), done.
Checking connectivity... done.
10
G.yx

これを解決するにはどうすればよいですか?

これらのエラーが数時間続くかどうかを確認します。

GitHubステータス 現在レポート

エラー率の上昇に関するレポートを調査しています。

そして、これは彼らの問題の副作用である可能性があります。

もう1つの方法は、OPがGitを再コンパイルして行った最新のGitリリースを使用していることを確認することです。

0
VonC