51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Linux解决wget命令出现Unable to establish SSL connection错误

用wget下载文件的时候经常会发生Unable to establish SSL connection的情况,如下图

[root@localhost ~]# wget https://dlcdn.apache.org/tomcat/tomcat-8/v8.5.81/bin/apache-tomcat-8.5.81.tar.gz
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

文章源自小柒网-https://www.yangxingzhen.cn/8193.html

问题分析:
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

wget后跟的url为https,对应端口443,https为加密传输的协议
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

解决方法:
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

加上跳过验证证书的参数"--no-check-certificate"
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

例如:wget --no-check-certificate URL下载地址
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

[root@localhost ~]# wget --no-check-certificate https://dlcdn.apache.org/tomcat/tomcat-8/v8.5.81/bin/apache-tomcat-8.5.81.tar.gz
文章源自小柒网-https://www.yangxingzhen.cn/8193.html

文章源自小柒网-https://www.yangxingzhen.cn/8193.html 文章源自小柒网-https://www.yangxingzhen.cn/8193.html

历史上的今天

8 月
9

赞(0)
未经允许不得转载:工具盒子 » Linux解决wget命令出现Unable to establish SSL connection错误