wget issue - "Unable to establish SSL connection"
Posted: Tue Feb 14, 2017 10:35 am America/New_York
Hi,
I´ve ordered some data from the website, and recieved the standard email:
Manifest URL:
https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/http_manifest.txt?h=ocdist103&p=/data1/30c0b0c011ab8656
You can then use wget to download the files in your manifest file:
wget --content-disposition -i manifest-file-name
You can also pipe wget commands together to initiate the download:
wget -O - 'manifest-url-from-above' | wget --content-disposition -i -
When I use "wget --content-disposition -i "http_manifest.txt"", it connects to the urls, then returns the error "Unable to establish SSL connection"
I´ve tried using the command --no-check-certificate and all the options for --secure-protocol=protocol on http://www.gnu.org/software/wget/manual/html_node/HTTPS-_0028SSL_002fTLS_0029-Options.html and I can´t get any of them to work.
I´ve also tried
wget -O - 'https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/http_manifest.txt?h=ocdist103&p=/data1/30c0b0c011ab8656' | wget --content-disposition -i -
And this doesn´t work either, it just returns the message "Unsupported scheme 'p' is not recognised as an internal or external command, oprable programme or batch file"
Please forgive me if I've missed something really obvious, I've never done anything like this before and it's been a very steep learning curve to work out what to do! Any help would be very appreciated
I´ve ordered some data from the website, and recieved the standard email:
Manifest URL:
https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/http_manifest.txt?h=ocdist103&p=/data1/30c0b0c011ab8656
You can then use wget to download the files in your manifest file:
wget --content-disposition -i manifest-file-name
You can also pipe wget commands together to initiate the download:
wget -O - 'manifest-url-from-above' | wget --content-disposition -i -
When I use "wget --content-disposition -i "http_manifest.txt"", it connects to the urls, then returns the error "Unable to establish SSL connection"
I´ve tried using the command --no-check-certificate and all the options for --secure-protocol=protocol on http://www.gnu.org/software/wget/manual/html_node/HTTPS-_0028SSL_002fTLS_0029-Options.html and I can´t get any of them to work.
I´ve also tried
wget -O - 'https://oceandata.sci.gsfc.nasa.gov/cgi/getfile/http_manifest.txt?h=ocdist103&p=/data1/30c0b0c011ab8656' | wget --content-disposition -i -
And this doesn´t work either, it just returns the message "Unsupported scheme 'p' is not recognised as an internal or external command, oprable programme or batch file"
Please forgive me if I've missed something really obvious, I've never done anything like this before and it's been a very steep learning curve to work out what to do! Any help would be very appreciated