Vagrant苏格兰威士忌盒子不工作

时间:2017-09-29 15:23:20

标签: php apache vagrant vagrantfile

我在Windows 7上安装了带有Virtualbox的vagrant 2.0。 我按照https://box.scotch.io/指南操作,但我无法访问http://192.168.33.10:8080

上的网络服务器

我通过ssh进入盒子并说没有安装apache2,也没有安装php。他们应该是,对吧?

我的VagrantFile

Vagrant.configure("2") do |config|
  config.vm.box = "scotch/box"
  config.vm.network "forwarded_port", guest: 80, host: 8080
  config.vm.network "private_network", ip: "192.168.33.10"
  config.vm.hostname = "scotchbox"
  config.vm.synced_folder ".","/var/www", :mount_options => ["dmode=777", "fmode=666"]
  config.ssh.username = "vagrant"
  config.ssh.password = "vagrant"
end

1 个答案:

答案 0 :(得分:0)

  1. 如果您使用专用网络,则不需要forward_port,当您拥有静态IP时,您将直接使用IP到达服务器;或者你可以使用前向端口,但肯定不是你的VM静态IP和主机的转发端口的混合;使用您的设置http://192.168.33.10http://127.0.0.1:8080可行,但我建议您删除转发端口并使用虚拟机IP

  2. 您不需要config.ssh参数,只需使用ssh密钥登录。