I use the following commands to add a user of RabbitMQ on CentOS 7
rabbitmqctl add_user test test
rabbitmqctl set_user_tags test administrator
rabbitmqctl set_permissions -p / test ".*" ".*" ".*"
The problem is that this configuration is not permanent so I do the same thing everytime when I restart the server.
Is there any way to make it permanent?
Also, If I have a cluster of nodes do I have to add the same user on each one?