Home> PHP Framework> Laravel> body text

N+1 problems with Laravel Homestead installation

灭绝师太
Release: 2021-12-06 18:23:34
Original
1703 people have browsed it

N+1 problems with Laravel Homestead installation

##

Laravelis committed to making the entirePHPdevelopment experience more enjoyable, andVagrantprovides a simple , an elegant way to manage and configure virtual machines,Laravel Homesteadis the official pre-packagedVagrant BoxofLaravel.

1. If ssh authentication fails

If ssh authentication does not fail, skip directly

a. Delete insecure_private_key and Insecure_private_key.pub

C:\Users\yourUser\.vagrant.d 目录下面(yourUser为你的电脑的用户名)
Copy after login

B. Re -generate Vagrant secrets:


ssh-keygen -f /Users/yourUser/.vagrant.d/insecure_private_key
Copy after login

C. Terminal enters Hometead to use SSH links, first use the password to enter the server

r

2.After modifying homestead.yam, restart vagrant and refresh the configuration

vagrant ssh
Copy after login

3. Completely delete the box

a. Destroy the virtual machine and run it in the Homestead directory

//需要运行在Homestead目录 vagrant reload --provision
Copy after login

b. Delete the homestead directory in the C:\Users\yourUser\VirtualBox VMs directory

c. Delete box:

vagrant destory --force
Copy after login
Copy after login

4. Remove box

vagrant box list //列出添加的box列表 vagrant box remove boxName
Copy after login
  • –box-version VALUE: Specify the box version to be deleted.

  • –all: Indicates that all versions of the box are to be deleted.

  • -force: force deletion, no prompt will be given if it is in use.

  • –provider VALUE: Delete the box corresponding to the specified provider

5. Completely delete homestead

a. Run

vagrant box remove NAME [-box-version,.....]
Copy after login

in the Homestead directory b. Delete thehomesteaddirectory in theC:\Users\yourUser\VirtualBox VMsdirectory

6.mkdir(): Permission denied error

vagrant destory --force
Copy after login
Copy after login

## Recommended related video tutorials :LaravelVideo Tutorial

The above is the detailed content of N+1 problems with Laravel Homestead installation. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!