[Vagrant] The guest machine entered an invalid state while waiting for it
1 min read
マシンに対して変更をしていないのに、vagrant up
でマシンが立ち上がらなくなった。
エラー内容
The guest machine entered an invalid state while waiting for it to boot. Valid states are 'starting, running'. The machine is in the 'aborted' state. Please verify everything is configured properly and try again.If the provider you're using has a GUI that comes with it,
it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, runvagrant up
while the
VirtualBox GUI is open.The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.
試したコマンド
停止
vagrant halt
一時停止
vagrant suspend
復帰
vagrant resume
再起動
vagrant reload
以上を試したが効果なし
解決した方法
そもそもの原因はMacTypeだった。 一時的にプロファイルを変えていた事で、プロセスの除外設定が変わってしまっていた。MacType を停止なり、プロセスマネージャーで置換しないように設定すれば OK
その後、vagrant up
で問題なく起動させることができた。