3

Vagrant バージョン: 1.4.0 vagrant-windows バージョン: 1.5.1

浮浪者ファイル:

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 
  config.vm.box = "win7.x86.v.004"
  config.vm.box_url = "URL"
  config.vm.boot_timeout = 300
  config.vm.provider :virtualbox do |vb|
    vb.gui = true
  end
  config.windows.halt_timeout = 15
  config.winrm.username = "vagrant"
  config.winrm.password = "vagrant"
  config.vm.guest = :windows
  config.vm.network :forwarded_port, guest: 5985, host: 5685, id: "winrm", :auto => true
  config.vm.network :forwarded_port, guest: 5986, host: 5686
  config.vm.network :forwarded_port, guest: 8080, host: 5687
  config.vm.network :forwarded_port, guest: 1521, host: 5688
  config.winrm.host = "192.168.33.33"
  config.winrm.port = 5985
  config.windows.set_work_network = true
  config.vm.network :private_network, ip: "192.168.33.33"
  config.vm.provision :shell, :path => "provision.bat"    
end

自分で作成した Win7 Enterprise SP1 ボックスを使用しています

vagrant up は、ネットワーク アダプターの構成でハングします。デバッグ ログは次のとおりです。

DEBUG configure_networks: vm_interface_map: {1=>{:net_connection_id=>"Local Area
Connection", :mac_address=>"08002753776B", :interface_index=>"11", :index=>"7"}
, 2=>{:net_connection_id=>"Local Area Connection 2", :mac_address=>"080027F5E843
", :interface_index=>"14", :index=>"12"}}
INFO winrmshell: Configuring NIC Local Area Connection 2 using static ip 192.16
8.33.33
DEBUG winrmshell: powershell executing:
netsh interface ip set address "Local Area Connection 2" static 192.168.33.33 25
5.255.255.0

「netsh」コマンドの実行後、ハングします。

これを解決する方法の回避策はありますか?

4

1 に答える 1

3

私のVagrantFileに間違った解決策が見つかりました

config.winrm.host = "192.168.33.33"

これはホスト IP アドレスである必要がありますが、私はゲスト IP を使用しました。これが、netsh コマンド「vagrant up」の実行中にサイレントにハングする理由です。理由は、netsh コマンドがネットワーク インターフェイスをリセットし、vagrant が netsh コマンドの結果を取得できないためです。

主に、このパラメーターは設定しないか、127.0.0.1 に設定しないでください。

于 2014-02-18T05:17:02.807 に答える