1

we get the following when we want to see rabbitmq users

rabbitmqctl list_users
Listing users ...
guest   [administrator]
...done.

now we want to add user airflow ( create user )

what is the right approach to add user ?

expected output

rabbitmqctl list_users
Listing users ...
airflow []
guest   [administrator]
...done.
jessica
  • 2,426
  • 24
  • 66

1 Answers1

2

You can do that with ’add_user’. See the command man page https://www.rabbitmq.com/rabbitmqctl.8.html

Jonas Eberle
  • 2,835
  • 1
  • 15
  • 25