wget返回“无法建立SSL连接”

axzmvihb  于 2023-05-18  发布在  其他
关注(0)|答案(2)|浏览(422)

我尝试使用wget检索资源,但我不断收到以下错误:

Unable to establish SSL connection.

我尝试了以下命令:

wget -d https://resourcesource.com/spring-boot-starter-parent-2.0.0.RELEASE.pom 
wget --no-check-certificate -d https://resourcesource.com/spring-boot-starter-parent-2.0.0.RELEASE.pom

但都没有用。
详细日志:

Resolving resourcesource.com (resourcesource.com)... {ip address}
Caching resourcesource.com => {ip address}
Connecting to resourcesource.com 
(resourcesource.com)|{ip address}:443... connected.
Created socket 3.
Releasing 0x000055c98ca7a8d0 (new refcount 1).
Initiating SSL handshake.
SSL handshake failed.
Closed fd 3
Unable to establish SSL connection.
Saving HSTS entries to /root/.wget-hsts

我从一个Docker容器运行这个。如果我尝试通过我的机器访问资源,我就能够访问它。
任何关于解决这个问题的建议都非常感谢。
谢谢大家。

ct3nt3jp

ct3nt3jp1#

这很可能是由于从客户端到服务器端的TLS版本不匹配。看看这里:
Unable to establish SSL connection upon wget on Ubuntu 14.04 LTS
编辑:进一步深入研究这个问题,它也可能是因为错误的系统时间或旧版本的wget。

h9a6wy2h

h9a6wy2h2#

这个命令解决了我的问题---> sudo yum update wget

相关问题