Upon installing OnlyOffice with Docker by the provided script it ends up with the following error: Docker pull argument exception: repository=onlyoffice/documentserver, tag= It’s not clear what causes this error but the reason is obvious:
Tag: cURL
Sep 16 2021
RPC failed; curl 18 transfer closed with outstanding read data remaining
When I tried to clone a decently-huge git repository I got the error below. The most common issue is that the connection closes and the whole clone is cancelled.
1 2 3 4 5 6 7 8 |
Cloning into 'large-repository'... remote: Counting objects: 20248, done. remote: Compressing objects: 100% (10204/10204), done. error: RPC failed; curl 18 transfer closed with outstanding read data remaining fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed |
After a lot of trial and errors and a lot of “remote end hung up unexpectedly” I have a way that works for me.
Mar 26 2021
RPC failed; curl 55 OpenSSL SSL_write: Connection was aborted, errno 10053
When tried to execute git push I got the following error: RPC failed; curl 55 OpenSSL SSL_write: Connection was aborted, errno 10053 The full error message:
1 2 3 4 5 6 7 8 9 10 |
Enumerating objects: 17, done. Counting objects: 100% (17/17), done. Delta compression using up to 4 threads Compressing objects: 100% (6/6), done. error: RPC failed; curl 55 OpenSSL SSL_write: Connection was aborted, errno 10053 send-pack: unexpected disconnect while reading sideband packet Writing objects: 100% (9/9), 11.03 MiB | 540.00 KiB/s, done. Total 9 (delta 1), reused 0 (delta 0), pack-reused 0 fatal: the remote end hung up unexpectedly Everything up-to-date |
Dec 13 2018
How to traverse FTP directories with CURL
When doing FTP commands to traverse the remote file system, there are a few different ways cURL can proceed to reach the target file, the file the user wants to transfer. multicwd cURL can do one change directory (CWD) command for every individual directory down the file tree hierarchy. If the full path is one/two/three/file.txt, …
Dec 13 2018
How to upload a file to remote FTPS with cURL and PHP
You may need to upload a file to remote FTP or FTPS in a number of cases. In this article I’m going to show you how to upload file with cURL from Linux shell and using cURL in PHP.