2017-07-27 9 views
2

私はRoots WPスタックで動作しているサイトで作業していますが、今はxamppから迷惑メールに切り替える予定です。問題は私が "迷惑な人"を動かすときです。何も起こりません。エラーも出力もありません。コマンドを終了するまでハングアップします。迷惑なinitを実行すると迷惑ファイルが作成されますが、迷惑行為は絶対に何も行いません。Vagrant upが機能しない、エラーが返されない(Windows 7)

私は現時点では作業用コンピュータでWindows 7で作業しています。私は問題なしで過去に流行を成功させました。

# -*- mode: ruby -*- 
# vi: set ft=ruby : 

# All Vagrant configuration is done below. The "2" in Vagrant.configure 
# configures the configuration version (we support older styles for 
# backwards compatibility). Please don't change it unless you know what 
# you're doing. 
Vagrant.configure("2") do |config| 
    # The most common configuration options are documented and commented below. 
    # For a complete reference, please see the online documentation at 
    # https://docs.vagrantup.com. 

    # Every Vagrant development environment requires a box. You can search for 
    # boxes at https://vagrantcloud.com/search. 
    config.vm.box = "precise32" 

    # The url from where the 'config.vm.box' box will be fetched if it 
    # doesn't already exist on the user's system. 
    config.vm.box_url = "http://files.vagrantup.com/precise32.box" 

    # Create a forwarded port mapping which allows access to a specific port 
    # within the machine from a port on the host machine. In the example below, 
    # accessing "localhost:8080" will access port 80 on the guest machine. 
    # NOTE: This will enable public access to the opened port 
    # config.vm.network "forwarded_port", guest: 80, host: 8080 

    # Create a forwarded port mapping which allows access to a specific port 
    # within the machine from a port on the host machine and only allow access 
    # via 127.0.0.1 to disable public access 
    # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" 

    # Create a private network, which allows host-only access to the machine 
    # using a specific IP. 
    # config.vm.network "private_network", ip: "192.168.33.10" 

    # Create a public network, which generally matched to bridged network. 
    # Bridged networks make the machine appear as another physical device on 
    # your network. 
    # config.vm.network "public_network" 

    # Share an additional folder to the guest VM. The first argument is 
    # the path on the host to the actual folder. The second argument is 
    # the path on the guest to mount the folder. And the optional third 
    # argument is a set of non-required options. 
    # config.vm.synced_folder "../data", "/vagrant_data" 

    # Provider-specific configuration so you can fine-tune various 
    # backing providers for Vagrant. These expose provider-specific options. 
    # Example for VirtualBox: 
    # 
    # config.vm.provider "virtualbox" do |vb| 
    # # Display the VirtualBox GUI when booting the machine 
    # vb.gui = true 
    # 
    # # Customize the amount of memory on the VM: 
    # vb.memory = "1024" 
    # end 
    # 
    # View the documentation for the provider you are using for more 
    # information on available options. 

    # Enable provisioning with a shell script. Additional provisioners such as 
    # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the 
    # documentation for more information about their specific syntax and use. 
    # config.vm.provision "shell", inline: <<-SHELL 
    # apt-get update 
    # apt-get install -y apache2 
    # SHELL 
end 
+0

この投稿は、重複しているようだ上位バージョンへのアップデートPowerShellの

  • 1.9.6へ:

    は、複数の解決策があります。 Windows 7用のWindows Management Frameworkをダウンロードすることで、このリンクを参照してください。https://stackoverflow.com/questions/25013526/vagrant-hangs-on-windows-7 – LectureMaker

  • 答えて

    0

    VirtualBoxと通信しているため、Windowsで無効なコマンドがハングしている場合は、VirtualBoxのアクセス許可の問題が原因である可能性があります。これは簡単に修正できます。 VirtualBoxを通常のユーザーまたは管理者として起動すると、逆の方法でVirtualBoxを使用できなくなります。 VagrantがVirtualBoxと対話するときは、Vagrantを実行しているコンソールと同じアクセスレベルで対話します。

    この問題を解決するには、すべてのVirtualBoxマシンとGUIを完全にシャットダウンします。数秒待ってください。その後、使用するアクセスレベルでのみVirtualBoxを起動してください。

    1

    私は同じ問題(Windows7 Pro SP1、VirtualBox 5.1.26、迷惑メール1.9.7)を持っていました。 私はこの問題を1.9.6にダウングレードすることで解決しました。

    +0

    ここに同じです。私はVagrantを1.9.6にダウングレードして動作させました。 –

    0

    放流中のpowershellの呼び出しが原因です。これはまだ現在の(2.0.1)迷惑メールバージョンの問題です。

    関連link

    • ダウングレード放浪
    関連する問題