HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

rabbitmqctl-users — Manage RabbitMQ users, their permissions, and tags. More information: <https://www.rabbitmq.com/docs

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandusersclimanagetheirrabbitmqpermissionsrabbitmqctl-users

Problem

How to use the rabbitmqctl-users command: Manage RabbitMQ users, their permissions, and tags. More information: <https://www.rabbitmq.com/docs/management>.

Solution

rabbitmqctl-users — Manage RabbitMQ users, their permissions, and tags. More information: <https://www.rabbitmq.com/docs/management>.

List all users:
rabbitmqctl list_users


Add a new user with a password:
rabbitmqctl add_user {{username}} {{password}}


Delete an existing user:
rabbitmqctl delete_user {{username}}


Change the password for a user:
rabbitmqctl change_password {{username}} {{new_password}}


Set permissions for a user on a specific virtual host:
rabbitmqctl set_permissions {{[-p|--vhost]}} {{vhost}} {{username}} {{read}} {{write}} {{configure}}


Clear all permissions for a user on a specific virtual host:
rabbitmqctl clear_permissions {{[-p|--vhost]}} {{vhost}} {{username}}


Assign one or more tags (e.g., administrator) to a user:
rabbitmqctl set_user_tags {{username}} {{tag1}} [{{tag2}}]

Code Snippets

List all users

rabbitmqctl list_users

Add a new user with a password

rabbitmqctl add_user {{username}} {{password}}

Delete an existing user

rabbitmqctl delete_user {{username}}

Change the password for a user

rabbitmqctl change_password {{username}} {{new_password}}

Set permissions for a user on a specific virtual host

rabbitmqctl set_permissions {{[-p|--vhost]}} {{vhost}} {{username}} {{read}} {{write}} {{configure}}

Context

tldr-pages: common/rabbitmqctl-users

Revisions (0)

No revisions yet.