在 vagrant up 期间“无法获取本地颁发者证书”,即使在 vagrant box 添加 --insecure 之后也是如此

问题描述 投票:0回答:2

我安装的 Vagrant 版本是 2.2.3,我运行的是 Windows 8 6.3 版本。 让我复制一下我在 git bash 中写入的内容以及结果。

yishai and shira (master) vagrant $ vagrant box add --insecure bento/ubuntu-16.04 --insecure --force
==> box: Loading metadata for box 'bento/ubuntu-16.04'
    ...
==> box: Successfully added box 'bento/ubuntu-16.04' (v201812.27.0) for 'virtualbox'!
yishai and shira (master) vagrant $ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'bento/ubuntu-16.04' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: = 2.3.5
The box 'bento/ubuntu-16.04' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Vagrant Cloud, 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://vagrantcloud.com/bento/ubuntu-16.04"]
Error: SSL certificate problem: unable to get local issuer certificate
bash vagrant
2个回答
17
投票

您有 2 个解决方案来解决此问题:

  1. 您可以使用

    insecure
    标志

    下载该框
    vagrant box add --insecure bento/ubuntu-16.04 --insecure
    
  2. 您可以直接在 Vagrantfile 中添加

    box_download_insecure
    标志

    Vagrant.configure("2") do |config|
      config.vm.box = "bento/ubuntu-16.04"
      config.vm.box_download_insecure = true
    end
    

0
投票

将机器“默认”设置为“virtualbox”提供商... ==> 默认:无法找到框“ubuntu/jammy64”。正在尝试查找并安装... 默认:Box 提供商:virtualbox 默认值:盒装版本:>= 0 无法找到“ubuntu/jammy64”框或 无法在远程目录中访问。如果这是私人的 HashiCorp Vagrant Cloud 上的框,请验证您已通过以下方式登录

vagrant login
。另外,请仔细检查姓名。扩展后的 URL和错误信息如下所示:

URL:[“https://vagrantcloud.com/ubuntu/jammy64”] 错误:请求的 URL 返回错误:404

© www.soinside.com 2019 - 2024. All rights reserved.