我在笔记本电脑上运行
Windows 8.1 64位.
原文链接:https://www.f2er.com/php/137194.html我一直在按照本指南尝试为我的Laravel项目设置一个宅基地:laravel installation and setup
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
我以管理员身份运行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
我得到了Vagrant和Virtual Box的最新版本.
在我看来,错误来自文件夹的路径无效,但看到我的yaml文件应该是正确的我不明白如何解决它.
我在另一台Windows 8.1固定PC上成功安装了宅基地环境,但我从未遇到过这个错误.