Questions tagged [rabbitmq-management]

This tag is for questions specific to RabbitMQ's management tool and HTTP API.

25 questions
15
votes
5 answers

How to fix 'Cookie file /var/lib/rabbitmq/.erlang.cookie must be accessible by owner only' error in windows server 2019 with DockerProvider service

I'm installed docker in windows server 2019 with DockerProvider I'm using this code Install-Module DockerProvider Install-Package Docker -ProviderName DockerProvider -RequiredVersion preview [Environment]::SetEnvironmentVariable("LCOW_SUPPORTED",…
3
votes
0 answers

RabbitMQ Management wrong consumer count

I'm using RabbitMQ 3.8.9 with Erlang 23.1. From the web management panel, queues page, I have enabled the "consumers count" column. When I start n consumers, after a few seconds, as expected, I see the number in that column increase by n. The…
3
votes
0 answers

RabbitMq anti-starvation pattern

The problem to solve: Prevent a customer from starving other customers. I plan for every customer to have their own queue and then one Consumer consuming from all those queues. In my case there could be hundreds of customers, but queues are cheap.…
MyGGaN
  • 1,766
  • 3
  • 30
  • 41
2
votes
1 answer

Celery creates 3 queues in RabbitMQ message queue

I was using celery as task queue and RabbitMQ as message queue, When pushing my tasks using the delay function to the queue. I see that there were 3 queues created in the rabbit mq. I don't understand what and why do we need these 2 extra queue.…
2
votes
2 answers

Enable RabbitMQ management plugin using C#

I've been trying to enable RabbitMQ management plugin using C# code. I was successfully able to install RabbitMQ server using c# by using following code. RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create(); …
2
votes
1 answer

How to add cipher suites support for rabbitmq?

I have two installations of RMQ in my environment. Old installation has version 3.7.8 and erlang 21.1. Newer installation has version 3.7.9 and erlang 21.2 New installation has this cipher only these suites supported. No ecdhe support at all unlike…
Pavel Polushin
  • 351
  • 2
  • 5
  • 16
2
votes
1 answer

Is it possible to use certificate based authentication for the rabbitmq-management plugin?

We are using the rabbitmq-management REST API for different operations on the rabbitmq's entities (queues/exchanges). The standart authentication by login/password works fine, but for some reasons we would like to use password-less authentication…
hujg
  • 23
  • 4
1
vote
1 answer

How can I use the "rabbitmqctl set_permissions" command to allow a RabbitMQ user to only subscribe to MQTT topics, but not publish?

I am using RabbitMQ MQTT and I would like only to allow one user to publish to topics, and all other users to only subscribe. I understand that running rabbitmqctl set_permissions -p 'vhost' 'username' '.*' '.*' '.*' will give the user permission to…
Xavier Mukodi
  • 166
  • 1
  • 10
1
vote
0 answers

logging action done via RabbitMQ management

is there an easy way to audit/log logging action done via RabbitMQ management? for instance, a user entered the RabbitMQ management and published a message through it, I would like to be able to know who published the message and when. Assume I'm…
amit gross
  • 11
  • 1
1
vote
0 answers

Unable to access rabbitmq-management portal - over local network ( docker installation )

I have installed docker on my local machine using the following command docker run -d --name some-rabbit -p 5672:5672 -p 5673:5673 -p 15672:15672 rabbitmq:3-management I have no issues with the installation and I am able to access rabbitmq…
user2243747
  • 2,767
  • 6
  • 41
  • 61
1
vote
1 answer

how to access management UI for rabbitmq from minikube?

I have docker-compose file with rabbitmq management image running. I am able to access UI for management. $ cat docker-compose.yml --- version: '3.7' services: rabbitmq: image: rabbitmq:management ports: - '5672:5672' -…
Nilesh
  • 20,521
  • 16
  • 92
  • 148
1
vote
1 answer

C#/.net API for RabbitMQ Management API

The Rabbit MQ Management Plugin exposes a REST API for management functions, I am specifically interested in the functions related to health monitoring like queue depth. Is there any C#/.net wrapper for the Management API? The only one I have found…
user11631417
1
vote
1 answer

How to document Queues using RabbitMq Admin UI

We have a requirement where rabbitMq administrator need to have informations regardings Queues that have been defined and are used. They need informations like fonctional(business) description of the Queue and/or the structure of the message that…
Loudsi
  • 81
  • 1
  • 7
1
vote
1 answer

Error accessing Rabbit MQ UI on macos installed via homebrew

I installed Rabbit MQ on my local machine running OS X via: brew install rabbitmq and I start and stop the server via: brew services start/stop rabbitmq I installed the plugin for the web UI via: rabbitmq-plugins enable rabbitmq_management I…
wuliwong
  • 4,238
  • 9
  • 41
  • 69
1
vote
1 answer

Access to rabbitMQ management interface

I've followed the installation procedure to unlock browser access: sudo rabbitmq-plugins enable rabbitmq_management sudo chown -R rabbitmq:rabbitmq /var/lib/rabbitmq/ After reaching localhost:15672 all I've got is a blank page:
fajnalowiec
  • 147
  • 9
1
2