W7上的流浪汉:找不到任何盒子 [英] Vagrant on w7 : can't find any box

查看:81
本文介绍了W7上的流浪汉:找不到任何盒子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是stackoverflow的新手,这是我的第一个问题...

I am new on stackoverflow and this is my first question...

在尝试在专用存储库上放置盒子时,我遇到了 Vagrant 的问题,所以我尝试在Atlas上获取"hashicorp/precise64",但我遇到了同样的问题: Vagrant可以找不到框.

I had an issue with Vagrant when trying to get a box on a private repository so I tried to get 'hashicorp/precise64' on Atlas and I have the same problem : Vagrant can't find the box.

我正在 Windows 7 上将 Vagrant 1.9.3 Virtualbox 5.1.18 (带有扩展包)一起使用. 我没有安装问题.

I am using Vagrant 1.9.3 on Windows 7 with Virtualbox 5.1.18 (with extension pack). I had no issue on installation.

$ vagrant version
Installed Version: 1.9.3
Latest Version: 1.9.3

You're running an up-to-date version of Vagrant!

初始化时一切似乎都正确,创建了Vagrantfile:

Everything seems to be right on initialization, Vagrantfile is created :

$ vagrant init hashicorp/precise64
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.

Vagrantfile:

Vagrantfile :

# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://atlas.hashicorp.com/search.
  config.vm.box = "hashicorp/precise64"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  # config.vm.network "private_network", ip: "192.168.33.10"

  # Create a public network, which generally matched to bridged network.
  # Bridged networks make the machine appear as another physical device on
  # your network.
  # config.vm.network "public_network"

  # Share an additional folder to the guest VM. The first argument is
  # the path on the host to the actual folder. The second argument is
  # the path on the guest to mount the folder. And the optional third
  # argument is a set of non-required options.
  # config.vm.synced_folder "../data", "/vagrant_data"

  # Provider-specific configuration so you can fine-tune various
  # backing providers for Vagrant. These expose provider-specific options.
  # Example for VirtualBox:
  #
  # config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
  #   vb.memory = "1024"
  # end
  #
  # View the documentation for the provider you are using for more
  # information on available options.

  # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
  # such as FTP and Heroku are also available. See the documentation at
  # https://docs.vagrantup.com/v2/push/atlas.html for more information.
  # config.push.define "atlas" do |push|
  #   push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
  # end

  # Enable provisioning with a shell script. Additional provisioners such as
  # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
end

这是使用'vagrant up'命令时出现的错误:

Here is the error I get when using 'vagrant up' command :

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'hashicorp/precise64' could not be found. Attempting to  find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Loading metadata for box 'hashicorp/precise64'
    default: URL: https://atlas.hashicorp.com/hashicorp/precise64
The box 'hashicorp/precise64' 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/hashicorp/precise64
Error: Failed writing body (0 != 1063)

尝试下载其他公用箱时遇到相同的问题.

I have the same issue when trying to download other public boxes.

我尝试了几种Vagrant版本(v1.9.0,v1.9.1,v1.9.2,v1.9.3),带有和不带有管理员权限.

I tried with few Vagrant versions (v1.9.0, v1.9.1, v1.9.2, v1.9.3), with and without admin rights.

我没有代理,也没有互联网连接问题. 我试图禁用防火墙.

I have no proxy and no internet connection issue. I tried to disable my firewall.

我对此进行了一些研究,特别是在Vagrant兼容性问题上,但找不到很多,问题仍然存在.

I did some research on this, especially on Vagrant compatibility issues, but I could not find much and the problem remains.

有人有主意吗?

推荐答案

我刚刚发现问题的根源:我的Windows用户名中有特殊字符,这在Vagrant临时文件夹路径中带来了编码问题...

I just found the origin of my problem : I had special characters in my windows username that brought encoding issue in Vagrant temporary folder path...

非常感谢FrédéricHenri( https://stackoverflow.com/users/4296747/fr%c3%a9d%c3%a9ric-henri )为我提供了很多帮助,并且发现了我的问题的出处.

A big thanks to Frédéric Henri (https://stackoverflow.com/users/4296747/fr%c3%a9d%c3%a9ric-henri) who helped me a lot and also found the origin of my issue.

这篇关于W7上的流浪汉:找不到任何盒子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆