OSをMavericksにアップデートしたらVagrantが止まった / 回復した
時間ができたので、重い腰を上げてMountain LionからMavericksにアップデートしました。基本何も変わりませんが、壁紙も新しくなって何となく清々しい気分です。
いろいろアプリを起動してみた結果、大きな問題もありませんでしたが、ローカル開発環境のVagrantだけ止まってしまいました…。
こんなエラーが出る。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Bringing machine 'default' up with 'virtualbox' provider...
[default] Setting the name of the VM...
[default] Clearing any previously set forwarded ports...
[default] Creating shared folders metadata...
[default] Clearing any previously set network interfaces...
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["hostonlyif", "create"]
Stderr: 0%...
Progress state: NS_ERROR_FAILURE
VBoxManage: error: Failed to create the host-only adapter
VBoxManage: error: VBoxNetAdpCtl: Error while adding new interface: failed to open /dev/vboxnetctl: No such file or directory
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component HostNetworkInterface, interface IHostNetworkInterface
VBoxManage: error: Context: "int handleCreate(HandlerArg*, int, int*)" at line 68 of file VBoxManageHostonly.cpp
ググったらすぐ解決方が見つかった。
このコマンド打つだけ。
1
sudo /Library/StartupItems/VirtualBox/VirtualBox restart
Virtual Box 4.3以上使ってる人は以下らしい。
1
sudo launchctl load /Library/LaunchDaemons/org.virtualbox.startup.plist
でも一番最新の 4.3.2 だとこの現象は起きないみたい。
Virtual Boxを最新版にしてからOSをアップグレードするのも一つの手ですね。
この人が詳しく解説してくれている。
Fixing Vagrant after an OSX Mavericks update
なおった。一安心。