2017-03-10 145 views
1

看起来像错误的起源,因为我在公司防火墙后面,至少这是我的理论。vagrant向上命令抛出ssl错误

我试图尝试选项错误消息和运行无业游民了--insecure标志的建议,但是这不是为命令的选项,但只有添加命令。不过,我已经有一个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

回答

2

您可能需要2个步骤运行。

  1. 下载使用insecure标志

    vagrant box add ubuntu/trusty64 --insecure 
    
  2. 旋转你的VM

    vagrant up 
    
+0

我试过,但盒子其仍表现出同样的错误 –

+0

在你Vangrant文​​件 –

1
config.vm.box_download_insecure = true #added by Amos for curl error 
相关问题