And*_*sen 8 php vagrant laravel homestead
我在笔记本电脑上运行Windows 8.1 64位.
我一直在按照本指南尝试为我的Laravel项目设置一个宅基地:laravel安装和设置
guide tldr:你只需要安装vagrant,virtual-box和composer.您使用这些来获取宅基地,然后进行初始化和安装.您配置homestead.yaml并生成ssh密钥.在所有这些之后,你使用vagrant up,让vagrant设置你的Vritual机器与你的开发环境和所有这些东西.
使用git bash,我按照指南进入'vagrant up'部分.
这是它变得毛茸茸的地方,我收到以下错误:
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'laravel/homestead'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'laravel/homestead' is up to date...
==> default: Setting the name of the VM: homestead
==> 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 => 8000 (adapter 1)
default: 443 => 44300 (adapter 1)
default: 3306 => 33060 (adapter 1)
default: 5432 => 54320 (adapter 1)
default: 22 => 2222 (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: Warning: Connection timeout. Retrying...
default: Warning: Remote connection disconnect. Retrying...
default:
default: Vagrant insecure key detected. Vagrant will automatically replace
default: this with a newly generated keypair for better security.
default:
default: Inserting generated public key within guest...
default: Removing insecure key from the guest if it's present...
default: Key inserted! Disconnecting and reconnecting using new SSH 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 o
f
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 t
he
default: virtual machine match the version of VirtualBox you have installed
on
default: your host and reload your VM.
default:
default: Guest Additions Version: 4.3.14
default: VirtualBox Version: 5.0
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
default: /vagrant => C:/Users/Work/Homestead/Homestead
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
chown `id -u vagrant`:`id -g vagrant` /vagrant
Stdout from the command:
Stderr from the command:
chown: changing ownership of ???/vagrant???: Not a directory
Run Code Online (Sandbox Code Playgroud)
我以管理员身份运行git bash.我的.yaml文件看起来像这样
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: C:/Users/Work/.ssh/id_rsa.pub
keys:
- C:/Users/Work/.ssh/id_rsa
folders:
- map: C:/Users/Work/Projects
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
databases:
- homestead
variables:
- key: APP_ENV
value: local
Run Code Online (Sandbox Code Playgroud)
我得到了Vagrant和Virtual Box的最新版本.
在我看来,错误来自文件夹的路径无效,但看到我的yaml文件应该是正确的我不明白如何解决它.
我在另一台Windows 8.1固定PC上成功安装了宅基地环境,但我从未遇到过这个错误.
我刚刚熬过来了
vagrant up
,你就在那里