Homestead 无效

Homestead doesn't work

我通过命令"vagrant up" 运行 我的虚拟机,没问题。 "vagrant ssh" 工作正常,ifconfig 的输出是:

vagrant@precise32:~$ ifconfig
      eth0      Link encap:Ethernet  HWaddr 08:00:27:12:96:98
                inet addr:10.0.2.15  Bcast:10.0.2.255  Mask:255.255.255.0
                inet6 addr: fe80::a00:27ff:fe12:9698/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:583 errors:0 dropped:0 overruns:0 frame:0
                TX packets:420 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:65606 (65.6 KB)  TX bytes:56229 (56.2 KB)

      lo        Link encap:Local Loopback
                inet addr:127.0.0.1  Mask:255.0.0.0
                inet6 addr: ::1/128 Scope:Host
                UP LOOPBACK RUNNING  MTU:16436  Metric:1
                RX packets:0 errors:0 dropped:0 overruns:0 frame:0
                TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

我的 Homestead.yaml 是:

ip: 192.168.10.10
memory: 2048
cpus: 1
provider: virtualbox
authorize: C:/Users/franc/.ssh/id_rsa.pub
keys:
    - C:/Users/franc/.ssh/id_rsa
folders:
    -
        map: C:/Users/franc/Websites/Prova
        to: /home/vagrant/Code/prova
sites:
    -
        map: Prova.app
        to: /home/vagrant/Code/prova/public
databases:
    - homestead
name: prova
hostname: prova

但是当我尝试浏览我的网络应用程序时,它不起作用。 我试过 http://prova.app, 192.168.10.10:8000, 127.0.0.1:8000, http://localhost:8000 但还是不行。

我的主机文件:

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

192.168.10.10 prova.app

更新: 我重新安装了 VirtualBox(最新版本),使用 PuTTygen 生成了一个 ssh-key,将 public 保存为 id_rsa.pub,将私有保存为 id_rsa(无扩展名)并放入 .ssh 文件夹中。 克隆 Homestead 存储库并添加 homestead 框。 配置 Homestad.yaml 并在添加项目后开始 "vagrant up" 现在一切正常。

你能 Ping 你的 vagrant box IP 还是失败并收到 0 个数据包?

这听起来很像 bug in VirtualBox 5.1.24。该票证被标记为 Linux 主机,但它也可能影响 Windows。

问题似乎是由于 VirtualBox 未能为仅主机网络创建路由引起的。将 VirtualBox 回滚到 5.1.22 为我解决了这个问题(Linux。)如果你也回滚并且它解决了这个问题,我建议你加入错误跟踪器让他们知道。祝你好运!