Skip to content
This repository has been archived by the owner on Jan 23, 2019. It is now read-only.

Latest commit

 

History

History
50 lines (37 loc) · 1.59 KB

VAGRANT.md

File metadata and controls

50 lines (37 loc) · 1.59 KB

Using Vagrant

Prerequisites

For development of the camunda-template cookbook environment, you need to install:

vagrant plugin install vagrant-omnibus
vagrant plugin install vagrant-cachier
vagrant plugin install vagrant-berkshelf --plugin-version '>= 2.0.1'

Managing the Vagrant VM

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

Known issues

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.