Laravel家园和流浪汉设置无法正常工作

时间:2016-07-29 05:59:50

标签: laravel vagrant homestead

我遵循了原始文件中的vagrant和宅基地,但每个site.app:8000你访问它只是继续加载,没有任何反应。此配置文件中是否有错误?

Homestead.yaml

ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: ~/Developer/laravel
      to: /home/vagrant/laravel

sites:
    - map: hello-world.local
      to: /home/vagrant/laravel/hello-world/public

databases:
    - homestead

主机

192.168.10.10    hello-world.local

vagrant up log

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 80 (guest) => 8000 (host) (adapter 1)
    default: 443 (guest) => 44300 (host) (adapter 1)
    default: 3306 (guest) => 33060 (host) (adapter 1)
    default: 5432 (guest) => 54320 (host) (adapter 1)
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
    default: The guest additions on this VM do not match the installed version of
    default: VirtualBox! In most cases this is fine, but in rare cases it can
    default: prevent things such as shared folders from working properly. If you see
    default: shared folder errors, please make sure the guest additions within the
    default: virtual machine match the version of VirtualBox you have installed on
    default: your host and reload your VM.
    default: 
    default: Guest Additions Version: 5.0.20
    default: VirtualBox Version: 5.1
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
    default: /vagrant => /Users/nikla/Developer/homestead
    default: /home/vagrant/laravel => /Users/nikla/Developer/laravel
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.

nmap log

Starting Nmap 7.12 ( https://nmap.org ) at 2016-07-29 22:55 ART
Nmap scan report for 192.168.10.10
Host is up (0.00063s latency).
Not shown: 994 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
80/tcp   open  http
443/tcp  open  https
3306/tcp open  mysql
5432/tcp open  postgresql
9000/tcp open  cslistener

Nmap done: 1 IP address (1 host up) scanned in 13.19 seconds

2 个答案:

答案 0 :(得分:1)

检查:

  • id_rsa.pub和id_rsa位于此文件夹中。
  • / Users / nikla / Developer / laravel文件夹存在于您的主机中。
  • / home / vagrant / laravel存在于您的Vagrant VM计算机中。您可以使用命令" vagrant ssh"。
  • 检查它在机器中的登录情况
  • 尝试在没有8000端口的情况下访问http://test.app

我在Homestead.yaml文件中看不到数据库。你应该有这个文件中的下一个文本

databases:
    - homestead

答案 1 :(得分:1)

我检查了你的"流浪汉"记录,我看到一切都好。我已将您的日志与我的机器日志进行了比较,并且类似。

尝试在Web浏览器中打开IP(使用Vagrant VM IP更改IP):

http://192.168.10.10/

您是否有防火墙,防病毒软件或其他可能会禁用通信的软件?

尝试执行nmap以查看哪些端口已打开。我将我的nmap从我的主机粘贴到我的虚拟机上,这样你就可以看到这些端口是打开的。

$ nmap 192.168.10.10

Starting Nmap 6.47 ( http://nmap.org ) at 2016-07-30 01:48 Hora de verano romance
Nmap scan report for homestead.app (192.168.10.10)
mass_dns: warning: Unable to determine any DNS servers. Reverse DNS is disabled. Try using --system-dns or specify valid servers with --dns-servers
Host is up (0.0019s latency).
Not shown: 993 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
80/tcp   open  http
111/tcp  open  rpcbind
443/tcp  open  https
3306/tcp open  mysql
5432/tcp open  postgresql
9000/tcp open  cslistener
MAC Address: 08:00:27:CD:99:8C (Cadmus Computer Systems)

Nmap done: 1 IP address (1 host up) scanned in 21.83 seconds
相关问题