Laravel Homestead SSH

Laravel Homestead SSH

我在尝试通过 SSH 在本地计算机上访问 Laravel Homestead 时遇到了一些奇怪的问题。我可以 运行:

homestead up

没问题,可以通过浏览器访问我的 "website.local"。但是当我 运行:

homestead ssh

vagrant ssh

我收到以下信息:

Welcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-30-generic x86_64)

* Documentation:  https://help.ubuntu.com/

System information as of Fri Jan  2 11:08:55 UTC 2015

System load:  0.0               Processes:           95
Usage of /:   5.1% of 39.34GB   Users logged in:     0
Memory usage: 35%               IP address for eth0: 10.0.2.15
Swap usage:   0%                IP address for eth1: 192.168.10.10

Graph this data and manage this system at:
https://landscape.canonical.com/

Get cloud support with Ubuntu Advantage Cloud Guest:
http://www.ubuntu.com/business/services/cloud


Last login: Fri Jan  2 11:08:55 2015 from 10.0.2.2
Connection to 127.0.0.1 closed.

我必须说这绝对让我感到困惑,因为截至昨晚它运行良好。

首先,再次尝试老式的 "off and on"。重新启动计算机,然后重试 homestead up

下一步是销毁并重建您的 Homestead 机器。因为您所有的配置都在 Homestead.yaml 文件中,所以您不会丢失任何东西(除了任何数据库的内容)。 运行 homestead destroy 并确认,然后再次 homestead up 从头开始​​重建它。

或者,使用 rm -rf ~/.homestead 删除您的 Homestead 配置(假设您使用的是 Mac)。 运行 homestead inithomestead edit 再次配置您的机器,最后 homestead up 重新构建它。

最后,确保您已经安装了最新版本的 Vagrant 和 VirtualBox,然后使用 composer global update 更新您的 Homestead 安装。另外 运行 homestead update 以确保您拥有最新的 Homestead 图像。然后 homestead init 再次从头开始 运行 更新。