vagrant up命令抛出ssl错误

Ska*_*Ska 5 vagrant

看起来错误的起源是因为我落后于公司防火墙,至少这是我的理论.

我尝试过尝试错误消息中建议的选项并使用--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.
Run Code Online (Sandbox Code Playgroud)

sdfsdf

Fré*_*nri 12

您可能需要分两步运行.

  1. 使用insecure标志下载框

    vagrant box add ubuntu/trusty64 --insecure
    
    Run Code Online (Sandbox Code Playgroud)
  2. 启动你的VM

    vagrant up
    
    Run Code Online (Sandbox Code Playgroud)


Amo*_*gei 7

config.vm.box_download_insecure = true #added by Amos for curl error
Run Code Online (Sandbox Code Playgroud)