Questions tagged [rabbitmq]

RabbitMQ is an open-source and commercially supported messaging broker written in Erlang which allows applications to scale by decoupling the sending and receiving of data. RabbitMQ features flexible messaging routing via exchanges and queues, server clustering, mirrored queues for high availability, and clients for a variety of languages. The home page is http://www.rabbitmq.com.

RabbitMQ is open source message broker software that implements the Advanced Message Queuing Protocol (AMQP), the open standard for business messaging. Written in Erlang, the RabbitMQ server is based on a proven platform and offers a reliable, highly available, scalable and portable messaging system with predictable and consistent throughput and latency.

RabbitMQ is 100% open source and 100% based on open standard protocols freeing users from dependency on proprietary vendor-supplied libraries. It is designed from the ground up to interoperate with other message systems. It is a leading implementation of AMQP.

Through adapters, it supports MQTT and STOMP, both natively and over HTTP/WebSockets. SMTP is also available thanks to a community plugin. Support for the software is offered through both a thriving community of active contributors and a range of commercial support services available through Pivotal (https://pivotal.io/oss).

Related tags

220 questions
0
votes
0 answers

Installing deduplication plugin on RabbitMQ hosted in Amazon MQ

How to install RabbitMQ deduplication plugin (https://github.com/noxdafox/rabbitmq-message-deduplication) on RabbitMQ hosted in Amazon MQ?
0
votes
0 answers

HTTP Base Auth for a Swarm service behind Traefik reverse proxy

I'm running a Docker Swarm cluster with services behind Traefik2 with HTTPS Base Auth enabled in Traefik itself. Now i'd like to add RabbitMQ with its management interface and make the web management interface accessible through Traefiks port…
0
votes
1 answer

Kubernetes RabbitMQ Operator: Cluster is having startup issues (readinessProbes are failing), how to troubleshoot further?

My RabbitMQ Cluster is not switching into ready state (readiness probes are failing), as it is having troubles on startup. The cluster was deployed using the official RabbitMQ operator. Unfortunately the logs do not contain any valuable…
Philbo
  • 1
  • 1
0
votes
0 answers

container-puppet-rabbitmq doesn't work when deploying overcloud with tripleo

I been trying install openstack overcloud with tripleo but not work container-puppet-rabbitmq container. ===environment=== Hypervisor : Vmware VM#1 : Undercloud VM#2 : Overcloud_Controller VM#3 : Overcloud_Compute OS : Centos stream 8 Openstack…
Aaron
  • 1
  • 1
0
votes
0 answers

RabbitMQ connected dockerized Windows app stops consuming messages after some idle minutes

I have two Windows processes each in its own Docker container and they both publish and consume RabbitMQ messages. This is a proven app working on bare metal, but when dockerized it stops consuming messages after some idle period. Publishing still…
gitzko
  • 1
0
votes
1 answer

Rabbitmq cluster on Nomad

I want to create a rabbitmq cluster in a nomad cluster. Right now I can run rabbitmq docker containers, but I can't create a cluster based on consul discovery. After containters starts i got this massages on every node: [warning] <0.229.0> Could not…
sflyer
  • 1
  • 3
0
votes
0 answers

Rabbit cache in docker-compose grows infinitely

i have problem with docker overlay mqueue-client folder grows infinitely. Now i have queue empty but folder take 80 GB here is docker-compose config rabbit: image: "rabbitmq:3.8-management" hostname: "rabbit" deploy: …
grek
  • 1
  • 2
0
votes
0 answers

openstack yoga volume creation fails

We are trying to create cinder volume. Cinder API accepts the request, but volumes are stuck in creating state. This happens regardless of the backend used (i.e. also with lvm). Seems like some timeouts happening between cinder api and the rest of…
xrkr
  • 403
  • 1
  • 7
  • 10
0
votes
1 answer

How to set RabbitMQ logging format to single line?

I want to have RabbitMQ log entry to single line instead of multiline. How could I do that? I have set log.file.formatter.single_line = true in rabbitmq.conf, but then RabbitMQ fails to start. In addition - if it would be possible to set in the…
Martynas Saint
  • 1,221
  • 7
  • 15
0
votes
1 answer

RabbitMQ Helm chart installation in a Kubernetes cluster failing distributing Erlang cookie to a node

I'm trying to install a RabbitMQ cluster through the Bitnami Helm chart (https://github.com/bitnami/charts/tree/master/bitnami/rabbitmq) in an EKS cluster and when I execute the Helm installation I get the following error in the first pod…
Felipe
  • 11
  • 1
  • 5
0
votes
0 answers

Set up HAProxy load balancer in docker for a docker RabbitMQ cluster

I've set up a 3 node RabbitMQ cluster in docker using the following, docker run -d --rm --net rabbits ` -v ${PWD}/config/rabbit-1/:/config/ ` -e RABBITMQ_CONFIG_FILE=/config/rabbitmq ` -e RABBITMQ_ERLANG_COOKIE=WIWVHCDTCIUAWANLMQAW ` --hostname…
0
votes
2 answers

Can I trace a RabbitMQ consumer to a remote host?

I often find myself troubleshooting situations where, due to user error (forgetting to shut down some processes), some extra consumers are listening on a known RabbitMQ queue. When I do rabbitmqctl list_consumers | grep I can see that…
em_bo
  • 151
  • 5
0
votes
1 answer

Using RabbitMQ docker image

I started a rabbitmq docker container as described here https://registry.hub.docker.com/_/rabbitmq/ $ sudo docker run -d --hostname myrabbit --name rabbit rabbitmq:3 Then I got the docker container's IP like so: $ sudo docker inspect -f…
Red Cricket
  • 470
  • 2
  • 8
  • 21
0
votes
1 answer

How do I move or migrate RabbitMQ Server config and database files to a different directory

I inherited a RabbitMQ Server installed on a Windows 10 Workstation. The config, database, logs etc. are in the user's folder that installed RabbitMQ initially. I need to move or migrate these to a public directory like C:\ProgramData\RabbitMQ…
Randy
  • 111
  • 7
0
votes
1 answer

Where is RabbitMQ config file, as its log shows "config file(s) : (none)"

I am new to RabbitMQ and have newly installed RabbitMQ 3.7.17 on a test virtual machine, it runs OK and I'm able to log in on its web interface. I'm looking at some unclear notes left by the previous engineer, mentioning some required configuration…
James
  • 121
  • 3
1 2 3
14
15