I am running RabbitMQ version 3.7.6 in a Docker container. The management plugin is enabled.
I receive the following error when logging in to the management UI:
I am using the following rabbitmq.conf
:
default_user = admin
default_pass = redacted
default_user_tags.administrator = true
default_user_tags.management = true
The confusing part is that it appears user admin
does indeed have management enabled. The following is shown during boot up:
Creating user 'admin'
Setting user tags for user 'admin' to [management,administrator]
Setting permissions for 'admin' in '/' to '.*', '.*', '.*'
As requested, here is the output of list_users
:
$ rabbitmqctl list_users
Listing users ...
admin [management, administrator]
Why am I unable to log in to the management console on an account that appears to have the management
tag enabled?