0

我正在逐步更新文件以消除错误以获取 laravel 设置。

我现在运行时遇到此错误homestead up

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'laravel/homestead'...
←[K==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'laravel/homestead' is up to date...
A VirtualBox machine with the name 'homestead' already exists.
Please use another name or delete the machine with the existing
name, and try again.

我打开了 Virtualbox,但找不到任何虚拟机,所以经过一些研究,我运行vagrant golbal-status并销毁了任何虚拟机vagrant destroy <VM id>

这似乎不起作用,所以我从 Homestead 目录中手动删除了 .vagrant 文件夹并重试。

出现错误后,当我vagrant global-status再次运行时,它会显示已创建的 VM,因此好像 homestead 创建了机器然后尝试重新创建它?因此冲突。这是尝试让 laravel 运行的第二天,我在 windows 8.1 上 T^T

4

1 回答 1

0

我有同样的问题。以下为我修复了它。从终端运行命令

$vagrant 全局状态

输出是

id 名称提供者状态目录

74c92a7 默认虚拟机关机 /home/maiko/.composer/vendor/laravel/homestead e73c724 默认虚拟机关机 /home/maiko/Desktop/code/Homestead

我所做的是删除 74c92a7 的 hometead 实例

$vagrant 销毁 74c92a7

一旦我再次跑上 vagrant ,一切都很顺利。

希望有帮助

于 2015-04-03T09:09:32.227 回答