"error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated"
Asked Answered
S

3

5

Dear community when I clone the project from bitbucket this error message apperas

"error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated"

Does anyone know how can I fix it ?? Thanks in advance.

Sheridansherie answered 1/2, 2020 at 18:28 Comment(1)
Please try below solution may help you! if not please let me know, Thank you!Subsonic
S
6

Please try this:

git config --global http.postBuffer 524288000

git config --global https.postBuffer 524288000

git config --global core.compression -1
Subsonic answered 1/2, 2020 at 18:31 Comment(4)
unfortunately it doesn’t solve the problem, I have tried itSheridansherie
Not working for me as well, as I explained in detail here.Getaway
I simply restarted the system and followed these steps and it worked. ThanksTransport
didn't work for me either.Mouthful
J
1

You might need to recompile git with openssl not gnults. Please refer this here It works for me in Ubuntu 18.04 & 20.04

Joettejoey answered 5/1, 2021 at 3:55 Comment(0)
B
-1

fatal: unable to access 'https://github.com/****': GnuTLS recv error (-110): The TLS connection was non-properly terminated.

solution: https://stdworkflow.com/782/fatal-cannot-access-https-github-com-gnutls-recv-error-110-the-tls-connection-was-non-pr

run commands as follows:

apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
Bramble answered 9/2, 2022 at 11:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.