Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where to find config.vm.boot_timeout?

Hi I want to edit the config.vm.boot_timeout in vagrant because I am having problem in booting up the vagrant. where i can find the config.vm.boot_timeout ?and what value should i put ? I am in windows8.1 x86

enter image description here Thank you in advance.

like image 603
jemz Avatar asked Sep 23 '15 05:09

jemz


People also ask

Where is the vagrant file?

By default, Vagrant shares your project directory (the one containing the Vagrantfile) to the /vagrant directory in your guest machine.


2 Answers

If it's windows 10 OS, then by default virtualization is disabled in BIOS level. If we make the value as enabled and restart the system and run vagrant up. Then it will works fine.

Steps to Do:

  1. Restart the system and press F1.
  2. Goto BIOS settings and enable Virtualization.
  3. Press F10 (Save and exit)
  4. Run vagrant up.
like image 34
praveen Avatar answered Oct 21 '22 02:10

praveen


You need to run vagrant command to get the location of the vagrant file. And then make changes to the variable config.vm.boot_timeout (Reference)

  1. The default value of the variable is 300. You can try changing the default values.
  2. Check if you have the latest version and it is compatible with your OS.

Follow the steps given here

Also, a whole bunch of solution's are provided here

like image 100
Techidiot Avatar answered Oct 21 '22 00:10

Techidiot