Laravel Vagrant Up SSH Problems

后端 未结 3 1283
暖寄归人
暖寄归人 2021-01-13 04:01

I am trying to create a Laravel App with the help of homestead vagrant. I am using a Windows 7 development environment. I\'m using the Per Project Installation and I\'m at t

3条回答
  •  花落未央
    2021-01-13 04:44

    This error occurs because the Ubuntu tries to raise all your network interfaces, but your cable isn't connected, then it waits until this timeout.

    It seems that this problem occurs when you export a VM, more info on https://www.virtualbox.org/ticket/15705

    You can edit your Vagrantfile and add these lines in the end of Vagrant.configure loop:

     config.vm.provider "virtualbox" do |vb|
            vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
        end
    

    Basically add this right before the very last "end".

提交回复
热议问题