Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 830 Bytes

File metadata and controls

23 lines (20 loc) · 830 Bytes

Automated Provisioning Project

This Project is to Automate Provisioning of MySQL, Memcache, RabbitMQ, Tomcat and NGNIX as a Stack from a Single Vagrantfile

Prerequisite

  • Oracle VM Virtualbox
  • Vagrant
  • Vagrant plugin in Vagrant
    vagrant plugin install vagrant-hostmanager
  • Git Bash

Note :

All the VM’s hostname and /etc/hosts file entries will be automatically updated.

cat /etc/hosts

Vagrant 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