Hello,Hello,
I'm trying to set up a Raspberry pi 4 to display Grafana dashboard hosted in server on TV screen. so it is an ssh connection that it will be established.
This includes cloning a git repository with this command : git clone https://github.com/dgcustomerfirst/grafana/grafana-kiosk and i'm having this error : "RPC failed; curl 56 GnuTLS recv error "
Anyone has a clue on this ?
many thanks
The error “RPC failed; curl 56 GnuTLS recv error” typically indicates a network issue or a problem with the Git settings. Here are a few solutions you can try:
Increase the Git Buffer Size: Sometimes this error can occur if the repository is large and the default Git buffer is too small. You can increase it with the following commands:
git config --global http.postBuffer 1048576000
git config --global https.postBuffer 1048576000
Use More Verbose Output: This might help identify the issue. You can enable verbose output with these commands:
export GIT_TRACE_PACKET=1
export GIT_TRACE=1
export GIT_CURL_VERBOSE=1
Install gnutls-bin: The issue might be related to GnuTLS, and installing gnutls-bin could resolve it:
sudo apt install gnutls-bin
Rebuild Git with OpenSSL: If the issue persists, you might need to rebuild Git to use OpenSSL instead of GnuTLS.
Check Network Configuration: Ensure that your network settings, including firewalls and anti-virus software, are not blocking the Git connection.
Switch to SSH: If HTTPS is causing issues, you can try cloning the repository using SSH instead.
I hope my suggestion is helpful for you. If you have any query please tell me.
Best Regard,
Kevin498
Statistics: Posted by kevin498 — Thu Mar 14, 2024 4:47 am