Docker-alpine: wget returns error -- can't execute 'ssl_helper': No such file or directory

Created on 20 Jun 2016  路  6Comments  路  Source: gliderlabs/docker-alpine

with Alpine Linux v3.4, when doing wget got errors.
ex:
bash-4.3# wget https://get.docker.com/builds/Linux/x86_64/docker-1.9.1.tgz

Connecting to get.docker.com (54.230.7.103:443)
wget: can't execute 'ssl_helper': No such file or directory
wget: error getting response: Connection reset by peer

tried
apk update
apk add ca-certificates
update-ca-certificates

But it does not help

Most helpful comment

It helped with:
apk add ca-certificates wget

All 6 comments

Try adding the "openssl" package as well -- that should do the trick.

("wget" shells out to "openssl" as its "ssl_helper")

tried apk add openssl. ssl_helper error is gone. but still get error:
Connecting to get.docker.com (54.192.142.119:80)
Connecting to get.docker.com (54.230.207.99:443)
wget: error getting response: Connection reset by peer

It helped with:
apk add ca-certificates wget

I would imagine that link is probably doing an https redirect.

right; regular http links are ok

apk --no-cache add ca-certificates openssl libstdc++ && update-ca-certificates

Was this page helpful?
0 / 5 - 0 ratings

Related issues

oarmstrong picture oarmstrong  路  4Comments

dniku picture dniku  路  4Comments

robinmonjo picture robinmonjo  路  4Comments

konradjurk picture konradjurk  路  5Comments

IdanAdar picture IdanAdar  路  4Comments