Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Homestead installation

I could not figure out where I made a mistake here. My command vagrant up replies with the following lines

$ vagrant up Check your Homestead.yaml file, the path to your private key does not exist. Check your Homestead.yaml file, the path to your private key does not exist. 

enter image description here

like image 308
Mitesh Avatar asked Jun 09 '17 17:06

Mitesh


People also ask

Which of the following is the correct command to install Homestead?

Installing Homestead Next, execute the bash init.sh command from the Homestead directory to create the Homestead. yaml configuration file. The Homestead. yaml file is where you will configure all of the settings for your Homestead installation.


1 Answers

You want to follow these steps from terminal

Generate a ssh key ssh-keygen -t rsa -b 4096 -C "[email protected]"

Start ssh agent eval "$(ssh-agent -s)"

Add your SSH private key to the ssh-agent ssh-add -k ~/.ssh/id_rsa

Then run vagrant up

like image 142
prola Avatar answered Sep 23 '22 12:09

prola