vagrant up命令抛出ssl错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vagrant up命令抛出ssl错误相关的知识,希望对你有一定的参考价值。
看起来错误的起源是因为我落后于公司防火墙,至少这是我的理论。
我尝试过尝试错误消息中建议的选项并使用--insecure标志运行vagrant,但这不是up命令的选项,而是仅用于添加命令。但是我已经有了Vagrantfile和所有相应的配置,所以我只需要运行vagrant。这里有什么解决方案?
vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'ubuntu/trusty64' could not be found. Attempting to find and in
stall...
default: Box Provider: virtualbox
default: Box Version: >= 0
The box 'ubuntu/trusty64' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Atlas, please verify you're logged in via
`vagrant login`. Also, please double-check the name. The expanded
URL and error message are shown below:
URL: ["https://atlas.hashicorp.com/ubuntu/trusty64"]
Error: SSL certificate problem: self signed certificate in certificate chain
More details here: http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
sdfsdf
答案
您可能需要分两步运行。
- 使用
insecure
标志下载该框vagrant box add ubuntu/trusty64 --insecure
- 启动你的VM
vagrant up
另一答案
config.vm.box_download_insecure = true #added by Amos for curl error
以上是关于vagrant up命令抛出ssl错误的主要内容,如果未能解决你的问题,请参考以下文章
VirtualBox,Vagrant和Laravel Homestead“vagrant up”错误
安装docker后,原来正常的vagrant up启动出现了错误
如何在每次 vagrant up 命令后保持 RSA 密钥的指纹不发生变化?