我今天去加载我的 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