Бродяга на w7: не могу найти ни одной коробки

Я новичок в stackru, и это мой первый вопрос...

У меня возникла проблема с Vagrant, когда я пытался получить коробку в частном репозитории, поэтому я попытался получить "hashicorp/precision64" для Atlas, и у меня возникла та же проблема: Vagrant не может найти коробку.

Я использую Vagrant 1.9.3 на Windows 7 с Virtualbox 5.1.18 (с пакетом расширений). У меня не было вопросов по установке.

$ vagrant version
Installed Version: 1.9.3
Latest Version: 1.9.3

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

Кажется, все правильно при инициализации, Vagrantfile создан:

$ 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:

# -*- 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:

$ 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)

У меня та же проблема при попытке загрузить другие общедоступные ящики.

Я пытался с несколькими версиями Vagrant (v1.9.0, v1.9.1, v1.9.2, v1.9.3), с правами администратора и без.

У меня нет прокси и нет проблем с подключением к интернету. Я пытался отключить свой брандмауэр.

Я провел некоторое исследование по этому вопросу, особенно по вопросам совместимости Vagrant, но я не смог найти много, и проблема остается.

У кого-нибудь есть идея?

1 ответ

Решение

Я только что нашел причину своей проблемы: у меня в имени пользователя Windows были специальные символы, которые привели к проблеме кодирования в пути к временной папке Vagrant...

Большое спасибо Фредерику Анри ( Frédéric Henri), который мне очень помог, а также нашел источник моей проблемы.

Другие вопросы по тегам