はじめに
このエントリーは、Vagrant の Github Issue #5975に掲載済みです。
Vagrant 1.7.2 des not support VirtualBox 5.0
事象
今さら Docker をインストールするために、VirtualBox や Vagrant など久々に停止して、再度起動しようとすると下記の不具合が発生した。
# 起動
$ vagrant up
# エラー
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. Please install one of the supported versions
listed below to use Vagrant:
4.0, 4.1, 4.2, 4.3
対応方法
あれ?と思ってVirtualBoxのVersionを確認すると 5.0 になってた
ついでに、Vagrant version も確認してみた。
# Vagrant version 確認
$ vagrant version
# 出力
Installed Version: 1.7.1
Latest Version: 1.7.4
To upgrade to the latest version, visit the downloads page and
download and install the latest version of Vagrant from the URL
below:
http://www.vagrantup.com/downloads.html
If you're curious what changed in the latest release, view the
CHANGELOG below:
https://github.com/mitchellh/vagrant/blob/v1.7.4/CHANGELOG.md
最新版のは1.7.4みたいだ。丁寧にダウンロード先のURLも掲載してあるのでブラウザからアクセスしてダウンロードしてインストール。
インストール完了後にもう一度 Vagrant の Version を確認
# Vagrant version 確認
$vagrant version
# 出力
Installed Version: 1.7.4
Latest Version: 1.7.4
You're running an up-to-date version of Vagrant!
きちんとアップデートされているようだ。
この後、vagrant up をするといつもどおりVagrantが起動した。
めでたしめでたし。