I have built RabbitMQ 3.7.3 from source on Ubuntu 16.04 using the following steps:
1)Installed Erlang 20.0, Elixir 1.6.1 and hex 0.17.3.
2) git clone https://github.com/rabbitmq/rabbitmq-server.git &&
cd rabbitmq-server/ &&
git checkout v3.7.3 &&
make all
The build was successful and I'm able to start the server using make run-broker and also can see server status using rabbitmqctl status but I can't enable the management plugin as its not found in the source. Is it built/downloaded during the build? How do I get and enable the Management plugin in order to access the UI?
I'm following http://www.rabbitmq.com/build-server.html and https://www.rabbitmq.com/management.html