Questions tagged [rabbitmq-management]

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

19 questions
5
votes
1 answer

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 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,670
  • 3
  • 30
  • 40
2
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…
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(); …
Sa'ad
  • 37
  • 5
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
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,217
  • 4
  • 30
  • 51
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
  • 17,950
  • 11
  • 74
  • 119
1
vote
0 answers

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

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
  • 3,687
  • 8
  • 35
  • 60
1
vote
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
  • 159
  • 1
  • 3
  • 10
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:
Artur Dzida
  • 149
  • 7
1
vote
0 answers

RabbitMQ API returning incorrect queue statistics

I'm working with RabbitMQ instances hosted at CloudAMQP. I'm calling the management API to get detailed queue statistics. About 1 in 10 calls to the API return invalid numbers. The endpoint is…
Matt S
  • 13,731
  • 4
  • 45
  • 70
0
votes
1 answer

rabbitmq - detecting "idle" queue

I'm looking for a correct way to know when queues are idle. "idle" = no messages were published for a predefined amount of time. How can I use the /api/queues (or other API) for that?
user3599803
  • 4,641
  • 10
  • 50
  • 95
0
votes
0 answers

Access x-first-death-queue header with RabbitMQ web interface

I want to access the x-first-death-queue header attribute of a dead lettered message, so i can create an header exchange which puplishs the message to queues which have the right binding. The bindings of the header exchange are following: First…
0
votes
0 answers

RabbitMQ Message lost after second deadletter exchange

I try so do a deadletter exchange with the following setup: FirstExchange -> FirstQueue -> SecondExchange -> SecondQueue -> ThirdExchange -> FirstQueue The Problem is, that only a Part if this Setup is working: FirstExchange -> FirstQueue ->…
1
2