2

我今天去加载我的 dev/localhost 环境,当我打开终端和cd ..我的目标 localhost 文件夹时。我做我每天做的事,我vagrant reload。通常,输入密码后,我的本地主机会在大约 30 秒内启动。

今天,当我尝试时,vagrant reload我收到消息“默认:VM 未创建。继续...

然后我试图vagrant up查看它是否可能由于某种原因而关闭,我收到了错误消息

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'base' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly...
==> default: Adding box 'base' (v0) for provider: virtualbox
    default: Downloading: base
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /Users/me/Documents/Development/website/www/base

在浏览器端,页面看起来像这样:

Index of /

[ICO]   Name    Last modified   Size    Description
Apache/2.2.22 (Ubuntu) Server at dev.webite.com Port 80

如何让我的本地主机再次运行?这就像我的机器被删除或消失了。

我的流浪文件:

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

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!

Vagrant.configure(2) do |config|

  config.vm.box = "magento"

  config.vm.network :forwarded_port, guest: 80, host: 8085

  # config.vm.network :public_network
  config.vm.network "private_network", ip: "192.168.19.88"

  config.vm.synced_folder ".", "/vagrant", type: "nfs"

  config.vm.provider :virtualbox do |vb|
    #vb.gui = true
    vb.customize ["modifyvm", :id, "--memory", "4096"]
    vb.cpus = 4

  end

end
4

1 回答 1

3

问题是 vagrant 在存在正确实例的情况下在虚拟框中创建了另一个 VM。

为了能够从 vagrant 操作正确的虚拟机虚拟机,请按照以下步骤操作:

  1. 运行VBoxManage list runningvms并记下要操作的 VM 的 ID

  2. 编辑文件.vagrant/machines/default/virtualbox/id并设置在上面步骤中找到的 ID

  3. 运行 vagrant 命令 (halt/up) 将运行预期的 VM

旧答案 如果您使用自定义base框,它可能更好:

  1. 将框添加到 vagrant

    vagrant box add <name of your box : base> <path to the box file>
    
  2. 用这个盒子初始化和向上流浪

    vagrant box init <name of your box : base>
    vagrant up
    

如果要将 a 引用为config.vm.box_url本地文件,则必须将其指定为 box 文件的路径(不是目录 - vagrant 将为您解压缩)

config.vm.box_url = "file://<path to a box file>"
于 2016-05-26T06:56:41.433 回答