Entry tags:
Installing curl on Solaris 10
Install the Sun developer tools, and add /usr/ccs/bin to your path. Download http://curl.haxx.se/download/curl-7.16.4.tar.gz, then:
$ gunzip curl-7.16.4.tar.gz $ tar -xvf curl-7.16.4.tar $ cd curl-7.16.4 $ ./configure --without-ssl $ make $ su # PATH=$PATH:/usr/ccs/bin # export PATH # make install
curl: (56) SSL read: error:00000000:lib(0):func(0):reason(0), errno 131
I am using curl utility. its version detail is following below.
/user/bin/curl -V
curl 7.30.0 (sparc-sun-solaris2.10) libcurl/7.30.0 OpenSSL/0.9.7d zlib/1.2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: IPv6 Largefile NTLM NTLM_WB SSL libz
The following curl command was successfully transfering the files to my sharepoint if the file size is less than 5MB. But, While transfering the file called sourcegunzipfile.tar.gz (size: 20MB) into my sharepoint folder, I am getting this Error: curl: (56) SSL read: error:00000000:lib(0):func(0):reason(0), errno 131
Command I used:
curl --ntlm -v --max-time 3600 -k -u 'domain\username:password' -T /src/sourcegunzipfile.tar.gz https://xyzsample.com/sites/Data/
Is there any resolution to address this to transfer large file without getting above mentioned error? Please suggest Thanks in advance.
Thanks & Regards,
Vijayan.