"nrel / CentOS-6.6-x86_64"ボックスが見つからなかったため、vagrantでLumifyインストールエラーが発生しました。

以下のようにvmwareワークステーションにlumifyをインストールしようとしています。

$ cd lumify
$ git clone https://github.com/lumifyio/lumify.git
$ cd lumify/lumify
$ vagrant up demo

Vagrant Up Demoの最後のステップを実行した後にエラーが発生しました。

Bringing machine 'dev' up with 'virtualbox' provider...
Bringing machine 'demo' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:

vm:
The box 'nrel/CentOS-6.6-x86_64' could not be found.

それから私がやったのと同じディレクトリに

vagrant box add CentOS `https://github.com/tommy-muehle/puppet-vagrant-boxes/releases/download/1.0.0/centos-6.6-x86_64.box`

それから私はやったvagrant up demo。しかし、まだ同じエラーが表示されます

注:vagrantfileはすでにlumifyフォルダに存在します。

ベストアンサー1

これはとても奇妙です。このボックスはnrel/CentOS-6.6-x86_64アルバムにあります。https://atlas.hashicorp.com/nrel/boxes/CentOS-6.6-x86_64)

どのバージョンの放浪者を実行していますか?アトラスからボックスをダウンロードするには、少なくともvagrant 1.5が必要です。

ボックスを手動でインストールすることもできますが、名前を尊重してください。

vagrant box add nrel/CentOS-6.6-x86_64 https://atlas.hashicorp.com/nrel/boxes/CentOS-6.6-x86_64/versions/1.0.0/providers/virtualbox.box

おすすめ記事