- Download from standalone distribution from http://www.rabbitmq.com/download.html
- Extract it
- Navigate to
/sbin - Execute ./rabbitmq-server to start the server in console mode
- If need to enable management console, install following plugin
- Do restart the server
- Now you can load the management console (http://localhost:15672). But cannot login
- To login, you need to create a user with following commands (here username is “admin” password is “adminpass”)
<RabbitMQ_HOME>/sbin/rabbitmqctl add_user admin adminpass
<RabbitMQ_HOME>/sbin/rabbitmqctl set_user_tags admin administrator
<RabbitMQ_HOME>/sbin/rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"
- Now you can login with provided username password