I have a problem with this CURL call:
curl -X POST \
--data-binary '@File01.tar.gz' \
http://website.intra.prova.it/gore-orgac/PINGU/TEST/lots/Test_017/content/files/File02.tar.gz
And I receive this error:
curl: (56) Failure when receiving data from the peer
But if I do this CURL:
curl -X POST \
--data-binary '@File01.tar.gz' \
http://website.intra.prova.it/gore-orgac/PINGU/TEST/lots/Test_017/content/files/File02
Its works well.
Why is that?
cURl error 56
can have different reason like:
POST
requestPUT/POST
any one of them.When I received this error last time, it was proxy blocking the request to the server.
But in your case, in non working case:
curl -X POST \
--data-binary '@File01.tar.gz' \
http://website.intra.prova.it/gore-orgac/PINGU/TEST/lots/Test_017/content/files/File02.tar.gz
you have appended the file to be POST
in URL itself, which is the location actually not available on server,
These can be reason not sure, it happened to me long back while playing with cURL command-line.
This happened to me because my POST data was too big. I was doing:
curl -X POST localhost:9200/_bulk --data-binary @too-big.file
To resolve the issue, i split the file into 2 parts with:
split -l 150000 too-big.file
Then ran 2 POSTS:
curl -X POST localhost:9200/_bulk --data-binary @xaa
curl -X POST localhost:9200/_bulk --data-binary @xab
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With