vagrant up命令抛出ssl错误

时间:2017-03-10 12:33:32

标签: 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.

sdfsdf

2 个答案:

答案 0 :(得分:8)

您可能需要分两步运行。

  1. 使用insecure标记

    下载该框
    vagrant box add ubuntu/trusty64 --insecure
    
  2. 启动你的虚拟机

    vagrant up
    

答案 1 :(得分:7)

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