2017-07-27 82 views
2

我正在一个运行在Roots WP堆栈上的网站上工作,我们现在计划从xampp切换到vagrant。问题是当我运行“流浪汉”时,没有任何反应。没有错误,没有任何输出,它只是挂起,直到我退出命令。运行vagrant init会创建一个vagrantfile,但流浪者up并没有什么。Vagrant不起作用,不会返回任何错误(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

这个职位似乎是重复的。通过下载适用于Windows 7的Windows管理框架,查看此链接以获得完整的解决方案:https://stackoverflow.com/questions/25013526/vagrant-hangs-on-windows-7 – LectureMaker

回答

0

如果Vagrant命令挂在Windows上是因为它们与VirtualBox通信,这可能是由VirtualBox的权限问题引起的。这很容易解决。以普通用户或管理员身份启动VirtualBox会阻止您以相反的方式使用它。请记住,当Vagrant与VirtualBox交互时,它将以与运行Vagrant的控制台相同的访问级别与它进行交互。

要解决此问题,请完全关闭所有VirtualBox机器和GUI。等几秒钟。然后,启动VirtualBox只与您希望使用的访问级别..

1

我有同样的问题(Windows7 Pro SP1,VirtualBox 5.1.26,vagrant 1.9.7)。 我'通过降级流浪者解决了这个问题1.9.6。

+0

同样在这里。我曾将Vagrant降级到1.9.6以使其工作。 –

0

由于呼叫到流浪者内的powershell而存在问题。目前(2.0.1)流浪版本仍然存在这个问题。

相关link

有多种解决方案:

  • 降级的瘪三对1.9.6
  • 更新的PowerShell更高版本
相关问题