RabbitMQ 3.3.1 can not login with guest/guest

I had the same Problem..

I installed RabbitMQ and Enabled Web Interface also but still couldn’t sign in with any user i newly created, this is because you need to be administrator to access this.

Do not create any config file and mess with it..

This is what i did then,

  1. Add a new/fresh user, say user test and password test:

    rabbitmqctl add_user test test
    
  2. Give administrative access to the new user:

    rabbitmqctl set_user_tags test administrator
    
  3. Set permission to newly created user:

    rabbitmqctl set_permissions -p / test ".*" ".*" ".*"
    

That’s it, enjoy 🙂

Leave a Comment