LoginSignup
59
54

More than 5 years have passed since last update.

Vagrant up 時に発生したエラーの対処法

Posted at

発生したエラー

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'base' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly...
==> default: Adding box 'base' (v0) for provider: virtualbox
    default: Downloading: base
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /Users/***/vagrant/base

どうやら vagrant init の時に box を指定していなかったらしい.

対処法

一旦 Vagrantfile を削除してから作成しなおす.

$ rm Vagrantfile
$ vagrant init CentOS7
$ vagrant up

これで無事仮想マシンを起動できました.

参考資料

59
54
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
59
54