2017-03-10 164 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 
相關問題