Hello,

I have not made any changes to my vagrant set up:

OS: xubuntu 16.04
Virtual Box: 5.1.12 r112440
Vagrant: 1.8.1

But when I try any vagrant command I am getting the following error message:

The provider 'virtualbox' that was requested to back the machine
'default' is reporting that it isn't usable on this system. The
reason is shown below:

Vagrant has detected that you have a version of VirtualBox installed
that is not supported by this version of Vagrant. Please install one of
the supported versions listed below to use Vagrant:

4.0, 4.1, 4.2, 4.3, 5.0

A Vagrant update may also be available that adds support for the version
you specified. Please check www.vagrantup.com/downloads.html to download
the latest version.

My Vagrant file is very simple as follows:


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

Vagrant.configure("2") do |config|

  config.vm.provider :virtualbox do |vb|
    vb.customize ["modifyvm", :id, "--memory", "4096"]
  end

  config.ssh.password = "vagrant"

  config.vm.box = 'bb-learn-9.1-Q2-2016.box'
  config.vm.box_url = './bb-learn-9.1-Q2-2016.box'

  config.vm.network :forwarded_port, guest: 8080, host: 9876
  config.vm.network :forwarded_port, guest: 8443, host: 9877
  config.vm.network :forwarded_port, guest: 2222, host: 9878
  config.vm.network :forwarded_port, guest: 5432, host: 9879
end

What would be the best way of approaching this issue. 

Is there another config file I could check so see why Vagrant believes a 
new version has been installed?








-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/fde7bc1e-8c0a-4e9c-b58d-e2230901dec5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to