Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions _docs/developer/getting_started/worker_vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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._

Expand Down Expand Up @@ -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.
Expand Down
Loading