wget ssl alert handshake failure

前端 未结 7 1747
花落未央
花落未央 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:02

    Basically your OpenSSL uses SSLv3 and the site you are accessing does not support that protocol.

    Just update your wget:

    sudo apt-get install wget

    Or if it is already supporting another secure protocol, just add it as argument:

    wget https://example.com --secure-protocol=PROTOCOL_v1

提交回复
热议问题