diff --git a/_docs/developer/getting_started/worker_vm.md b/_docs/developer/getting_started/worker_vm.md index 81771a7c..2b429dee 100644 --- a/_docs/developer/getting_started/worker_vm.md +++ b/_docs/developer/getting_started/worker_vm.md @@ -35,6 +35,18 @@ machines* in addition to your primary vagrant virtual machine. ``` vagrant workers up ``` + Alternatively, if you are testing the worker install process, it may be helpful to install the worker machine(s) from scratch. + + On Linux or Mac type: + ``` + FROM_SCRATCH=1 vagrant workers up + ``` + On Windows with `cmd` type: + ``` + SET FROM_SCRATCH=1 + vagrant workers up + ``` + _NOTE: Do not use the --provider flag with this command, since it will conflict with the provider of the main virtual machine._ @@ -80,6 +92,24 @@ __NOTE__: Depending on the performance of your computer and the size of the auto --- +## Removing Worker Machine(s) + +If you would like to remove your worker machine(s), run: +``` +vagrant workers destroy +``` +For each worker machine, you will be prompted on whether you would like to remove it. + +Alternatively, you can also destroy worker machines individually using: +``` +vagrant destroy 1a2b3c4d +``` +Where `1a2b3c4d` is the id of the machine. + +_Note: You can find a list of all vagrant machines and their ids using `vagrant global-status` ._ + +--- + ## Manual Worker Installation (VirtualBox) 1. Open the Virtual Box application.