This Project is to Automate Provisioning of MySQL, Memcache, RabbitMQ, Tomcat and NGNIX as a Stack from a Single Vagrantfile
- Oracle VM Virtualbox
- Vagrant
- Vagrant plugin in Vagrant
vagrant plugin install vagrant-hostmanager
- Git Bash
All the VM’s hostname and /etc/hosts file entries will be automatically updated.
cat /etc/hostsVagrant commands will impact on the entire stack if not specified with a hostname.
vagrant up
vagrant halt
vagrant reload
vagrant destroy
To use Vagrant commands on a specific VM use its hostname specified with the command.
vagrant up app01
vagrant halt db01
vagrant reload mc01
vagrant destroy rmq01