I am trying to override default user from config file but it is not working. I have change configuration like below.
%%
%% Default User / VHost
%% ====================
%%
%% On first start RabbitMQ will create a vhost and a user. These
%% config items control what gets created. See
%% information about vhosts and access control.
%%
{default_vhost, <<"/">>},
{default_user, <<"testuser">>},
{default_pass, <<"testuser">>},
{default_permissions, [<<".*">>, <<".*">>, <<".*">>]},
%% Tags for default user
%%
%%
{default_user_tags, [administrator]}
%%,
While i test the environment by rabbitmqctl environment then i get "testuser" as default user on console. But when i try to login in rabbitmq management with "testuser" then login fails. However "guest" is still working.
Please let me know if i am missing something.