Are you in the correct folder to run vagrant up? What is it telling you when you run vagrant up? Is there an error message? We need more to go on to help you out.
Vagrant issue
I have install vagrant on my win-8 PC.It's running properly first time but when shutdown my pc and run again vagrant up.it's not working. can you please tell me the proper procedure of it?
@Ishatanjeeb I assume you have required laravel/homestead in your project and I assume you are running vagrant commands from your projects directory and you have followed the docs to set up your environment. Then the following will work, all you need to do, after the first provision , for every consecutive vagrant up , run
vagrant up --no-provision
This command will yield a similar output as the one you posted above except at the end it will say:
Machine not provisioning because `--no-provision` is specified.
Which is what we want. Next, ssh into the VM, run
vagrant ssh
Note that running vagrant up --provision will destroy all databases, so be aware of that!
related thread : Create multiple sites on Homestead 2.0
Please or to participate in this conversation.