wget ssl alert handshake failure

前端 未结 7 1749
花落未央
花落未央 2021-02-01 01:59

I am trying to download files from an https site and keep getting the following error:

OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert ha         


        
7条回答
  •  故里飘歌
    2021-02-01 02:07

    I was in SLES12 and for me it worked after upgrading to wget 1.14, using --secure-protocol=TLSv1.2 and using --auth-no-challenge.

    wget --no-check-certificate --secure-protocol=TLSv1.2 --user=satul --password=xxx --auth-no-challenge -v --debug https://jenkins-server/artifact/build.x86_64.tgz
    

提交回复
热议问题