Delete connections using User name #5196
-
I use Rabbit MQ as my message broker. I need to remove existing connections by user name. Current Management API remove connection by connection_name. UPDATE : I use auth_backend to authenticate user. So user account not available in rabbit-mq user registry |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
See Revoking User Access. Another option would be to list connections using |
Beta Was this translation helpful? Give feedback.
See Revoking User Access.
Another option would be to list connections using
rabbitmqctl list_connections name user
, filter them and close them one by one. But in most cases, deleting the user is the easiest option.