Im confused on how to get rabbitmq ip address on EC2 instance. when I try to run
sudo rabbitmq-server
It shows this error
ERROR: node with name "rabbit" already running on "ip-123-213-44-444"
So I assumed that in order to access rabbitmq server it would be
http://123.213.44.444:5672
But I didn't get this web page as oppose on running on localhost
I even run rabbitmqctl status
on EC2 ubuntu instance and it shows this
{listeners,[{clustering,25672,"::"},{amqp,5672,"::"},{http,15672,"::"}]},
on localhost it would show
{listeners,
[{clustering,25672,"::"},
{amqp,5672,"127.0.0.1"},
{stomp,61613,"::"},
{http,15672,"::"},
{mqtt,1883,"::"}]},
How would I get the ip address of rabbitmq server on EC2 instance, so that I could start using it?