1
resposta

Problema vagrant up, Não encontra a url pra baixar o box.

Srs, Ao executar o vagrant up ocorreu o erro abaixo. Inclusive ate criei uma conta no Vagrant e dei logon mesmo assim nao funciona.

att,

Adriano Cabrera.

Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'hashcorp/precise64' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box Version: >= 0 The box 'hashcorp/precise64' 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/hashcorp/precise64"] Error: The requested URL returned error: 404 Not Found

1 resposta

Olá Adriano, tudo bem? Acho que pode ser o nome da box mesmo, você poderia tentar usando o nome hashicorp/bionic64, como no Vagrantfile abaixo:

Vagrant.configure("2") do |config|
  config.vm.box = "hashicorp/bionic64"
end

E fala pra gente se funcionou!