我正在尝试使用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容器中运行它。如果尝试通过我的机器访问资源,则可以访问它。
任何解决此问题的建议都将不胜感激。
繁星coding