web-dev-qa-db-ja.com

浮浪者にできない-「プロバイダー」を設定する方法

Vagrantを実行しようとしていますが、vagrant upエラーが表示された後:

No usable default provider could be found for your system.

Vagrant relies on interactions with 3rd party systems, known as
"providers", to provide Vagrant with resources to run development
environments. Examples are VirtualBox, VMware, Hyper-V.

The easiest solution to this message is to install VirtualBox, which
is available for free on all major platforms.

If you believe you already have a provider available, make sure it
is properly installed and configured. You can see more details about
why a particular provider isn't working by forcing usage with
`vagrant up --provider=PROVIDER`, which should give you a more specific
error message for that particular provider.

VirtualBoxバージョン4.3.26 r989888およびLinux Ubuntu(64ビット)より前にインストールした

後:vagrant box add precise32 http://files.vagrantup.com/precise32.box

==> box: Adding box 'precise32' (v0) for provider: box: Downloading: http://files.vagrantup.com/precise32.box box: Progress: 100% (Rate: 1425k/s, Estimated time remaining: --:--:--) ==> box: Successfully added box 'precise32' (v0) for 'virtualbox'!

vagrant box listをリストするとき

lucid32   (virtualbox, 0)
precise32 (virtualbox, 0)

「プロバイダー」の何が問題なのか

vagrant package --base vagrant-ubuntu64

Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.

Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
this to be available on the PATH. If VirtualBox is installed, please find the
`VBoxManage` binary and add it to the PATH environmental variable.

VirtualBoxを検出する方法

56
Tomasz

クイックノート-Vagrant 1.8.4とVirtualbox 5.1.Xは、MacOS 10.11では互換性がありません(プロバイダーを設定できません)。

Virtualbox 5.0.10は問題なく動作します。

55
etusm

Vagrantの最新バージョン(この記事の執筆時点では1.7.4)をインストールするだけで、これを修正できました。

21
Adam

VirtualBox 4.3.12以降に issue が報告されたようです:

VirtualBoxは、次の環境変数VBOX_MSI_INSTALL_PATHを自動的に作成します

ただし、vagrant(base.rbファイルを探す場合)は変数VBOX_INSTALL_PATHを使用します

したがって、次のことができます-変数名VBOX_MSI_INSTALL_PATHを更新してVBOX_INSTALL_PATHに変更します-VBOX_INSTALL_PATHと同じ値で新しい変数名VBOX_MSI_INSTALL_PATHを作成します

リマインダーは、My Computer (right click) --> Properties --> Advanced System Settings --> Environment Variablesに移動し、管理する必要のある変数を探します

7

vagrantを起動し、使用するプロバイダーを指定するだけです。

vagrant up --provider virtualbox

以下のスクリーンショットにあるように、指定されたプロバイダーが機能していない理由がわかります。私の場合、それはVirtualBox 5.2のサポートされていないバージョンでした。バージョン5.1にダウングレードする必要がありました

enter image description here

5

わかりましたので、Windows、Vagrant、VirtualBoxで同じ問題が発生していました。

  1. windowsデスクトップの[このPC]/[マイコンピューター]をクリックします。
  2. 「プロパティ」を選択します
  3. 「詳細」タブに移動します
  4. 下部の「環境変数...」をクリックします
  5. [システム変数]で[新規...]をクリックします
  6. 「変数名」を「VBOX_INSTALL_PATH」に設定します
  7. 「変数値」を「C:\ Program Files\Oracle\VirtualBox \」に設定します
  8. [OK]を選択して、他のすべての設定ウィンドウを閉じます

クレジットはここに行きます: https://github.com/mitchellh/vagrant/issues/3852

私は、virtualbox実行可能ファイルへの「パス」を必要とする環境変数(またはLinuxユーザーの場合はPATHと思う)があると想定しています。

5
Ruben Arevalo

MacOS 10.12を実行しており、homebrewを使用してvagrant 5.1をインストールしています。

OPと同じエラーが発生し、VirtualBoxの最新バージョン(v5.1.6)をダウンロードして修正しました。

N.B.このバージョンには ダウンロードページ でAMD64というラベルが付いています。これは64ビット標準の単なる名前であり、Intel Macには問題なくインストールされます。

2
Pete