Reputation: 1453
On vagrant up keep getting this error:
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'ubuntu/vivid64' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
The box 'ubuntu/vivid64' 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/vivid64"]
Error: The requested URL returned error: 404 Not Found
I suggest that something is wrong with url, but don't know how to solve it..
Upvotes: 6
Views: 7337
Reputation: 406
One of the solutions to this is to allow the insecure download, worked for me to download the box
Add this in Vagrantfile config.vm.box_download_insecure = true
Upvotes: 2
Reputation: 1265
You can do one of the following steps:
Replace in the Vagrantfile by this (find equivalent definitions)
Vagrant.configure("2") do |config| config.vm.box = "larryli/vivid64" end
Remove Vagrantfile and create a new one.
rm Vagranfile vagrant init larryli/vivid64 vagrant up
Upvotes: 0
Reputation: 2087
You can also try the larryli/vivid64 box.
https://vagrantcloud.com/larryli/boxes/vivid64
Upvotes: 2
Reputation: 6392
That box doesn't exist - the url returns a 404. Try a different one, like https://atlas.hashicorp.com/ubuntu/boxes/wily64
Upvotes: 1