linux wget没有通过authentication?

linux wget没有通过authentication?,第1张

概述linux wget没有通过authentication?

我试图做一个简单的wget在我的服务器上是全新的,我得到这个错误。 我从来没有遇到过这样的事情 – 完全…

[root@ip-219-140 ~]# wget https://dl.dropBoxusercontent.com/u/60455970/litecoin-0.6.3c-linux.tar.gz --10:11:52-- https://dl.dropBoxusercontent.com/u/60455970/litecoin-0.6.3c-linux.tar.gz Resolving dl.dropBoxusercontent.com... 54.243.119.191 Connecting to dl.dropBoxusercontent.com|54.243.119.191|:443... connected. ERROR: cannot verify dl.dropBoxusercontent.com's certificate,issued by `/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance CA-3': Unable to locally verify the issuer's authority. To connect to dl.dropBoxusercontent.com insecurely,use `--no-check-certificate'. Unable to establish SSL connection.

将所有嵌套目录下的所有文件与shell匹配

将内核configurationvariables映射到模块

64位linux上文件描述符的范围是什么?

Cygwin GCC交叉编译二进制文件?

linux内核中的调度algorithm

按照说明 *** 作:

要不安全地连接到dl.dropBoxusercontent.com,请使用`–no-check-certificate'。

跑:

wget --no-check-certificate https://dl.dropBoxusercontent.com/u/60455970/litecoin-0.6.3c-linux.tar.gz

它为我工作就好了!

解决底层的问题,而不是“ – 无检查证书”。

在Ubuntu的某些版本(确切的14.04服务器)上,wget和openssl是用/ usr / lib / ssl / certs中的默认CA存储进行编译的,而不是/ etc / ssl / certs中实际存在的证书。

通过符号链接修复:

sudo mkdir -p /usr/lib/ssl sudo ln -s /etc/ssl/certs /usr/lib/ssl/certs

总结

以上是内存溢出为你收集整理的linux wget没有通过authentication?全部内容,希望文章能够帮你解决linux wget没有通过authentication?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/langs/1154692.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-06-01
下一篇2022-06-01

发表评论

登录后才能评论

评论列表(0条)

    保存