Usage / Deployment Instructions
Step 1: Open port 5672, 15672 in security group while launching a instanceOpen port 4000 in security group while launching a instance
Step 2: Open Putty and Type <instance public IP> at “Host Name” and Type "ubuntu" as user name Password auto taken from PPK file
Step 3: Use following Linux command to change the host.
Step 3.1: Command: sudo vi /etc/hosts
Take the Private Ip address from your machine as per the below screenshot and add the second line of your command screen with that Private ip address


Step 4: Use the following command to start rabittmq:
Command: sudo su
Note: below command is used to make a login user and password. The syntax of the command is: rabbitmqctl add_user <username> <password>. We have taken admin as username and password as password as an example.
Command: rabbitmqctl add_user admin password
Command: rabbitmqctl set_user_tags admin administrator
Command: rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"
Command: rabbitmq-plugins enable rabbitmq_management

Step 5: Hit the browser with the ip as : http://<instance public IP>:15672
Login with the credentials as set by you in above step and enjoy rabittmq.

