For development of the camunda-template cookbook environment, you need to install:
-
Virtualbox
- Latest Version -> http://download.virtualbox.org/virtualbox/LATEST.TXT
- Windows -> http://download.virtualbox.org/virtualbox/
- Linux -> https://www.virtualbox.org/wiki/Linux_Downloads
-
Vagrant plugins
vagrant plugin install vagrant-omnibus
vagrant plugin install vagrant-cachier
vagrant plugin install vagrant-berkshelf --plugin-version '>= 2.0.1'
Use vagrant up
to create the virtual machine using the camunda-template cookbook while provisioning.
Use vagrant ssh
to login to the virtual machine.
The user / password combo is vagrant / vagrant
. The user has sudo rights.
If you want to start all over, execute
vagrant halt && \
vagrant destroy -f && \
vagrant up
If you got an error during boot regarding the network configuration and DHCP. Please see this vagrant issue.
A known workaround is to execute
VBoxManage dhcpserver remove --netname HostInterfaceNetworking-vboxnet0
before vagrant up
.