我正在使用Roots WP堆栈上运行的网站,我们现在正计划从xampp切换到vagrant。问题是当我跑步"流浪汉"时,没有任何反应。没有错误,没有任何输出,它只是挂起,直到我退出命令。运行vagrant init会创建一个vagrantfile,但vagrant up绝对没有任何意义。
我现在在工作计算机上使用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 :(得分:1)
我遇到了同样的问题(Windows7 Pro SP1,VirtualBox 5.1.26,vagrant 1.9.7)。 我已经通过将流浪者降级到1.9.6解决了这个问题。
答案 1 :(得分:0)
如果Vagrant命令挂在Windows上,因为它们正在与VirtualBox通信,这可能是由VirtualBox的权限问题引起的。这很容易解决。以普通用户或管理员身份启动VirtualBox会阻止您以相反的方式使用它。请记住,当Vagrant与VirtualBox交互时,它将与运行Vagrant的控制台具有相同的访问级别进行交互。
要解决此问题,请完全关闭所有VirtualBox计算机和GUI。等几秒钟。然后,仅使用您希望使用的访问级别启动VirtualBox ..
答案 2 :(得分:0)
由于在vagrant中调用powershell而存在问题。当前(2.0.1)流浪汉版本仍然是一个问题。
相关link。
有多种解决方案:
答案 3 :(得分:0)
我也有类似的问题。 我的环境是Vagrant 2.0.2,virtualbox 5.2.6和win 7。 最后,我通过将Powershell 2更新为Powershell 4来解决了这个问题。