zalando / zmon

Real-time monitoring of critical metrics & KPIs via elegant dashboards, Grafana3 visualizations & more
https://demo.zmon.io/
Other
359 stars 47 forks source link

Vagrant box fails to come up due to 404 on box URL #1

Closed scottcunningham closed 9 years ago

scottcunningham commented 9 years ago

Hey,

Looks like your configured Vagrant image is no longer available:

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'ubuntu-trusty-14.10-cloudimg' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Adding box 'ubuntu-trusty-14.10-cloudimg' (v0) for provider: virtualbox
    default: Downloading: https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
arturmartins commented 9 years ago

+1 ubuntu-trusty-14.10-cloudimg does not exist in the list of ubuntu vagrant boxes: https://vagrantcloud.com/ubuntu

Commented the line:

    #config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"

and changed the vm.box line from:

    config.vm.box = "ubuntu-trusty-14.10-cloudimg"

to:

    config.vm.box = "ubuntu/trusty64"

Now vagrant up works.

hjacobs commented 9 years ago

True, did not fail for me as the box was already downloaded once.