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

214 questions
6
votes
2 answers

Config file for RabbitMQ as windows service

I'm setting up an instance of RabbitMQ to run on my development workstation so as to make tests. I would like to play with the configuration (conf regarding flow control in my case). I've installed erlang, rabbitmq-server-3.1.1, set RABBITMQ_BASE to…
Olivier H
  • 245
  • 1
  • 3
  • 8
6
votes
2 answers

RabbitMQ Management console not working

I have started with RabbitMQ. I have a (windows) machine on which I installed two RabbitMQ nodes as a service - I have choose the nodename, port and service name for each of them. The services are running normally (i see that they are listening in a…
rrejc
  • 171
  • 1
  • 1
  • 4
6
votes
1 answer

Turn off EPMD listening port (4369) in Ubuntu / RabbitMQ

I'm trying to secure an install of RabbitMQ, and am not sure how to secure the Erlang EPMD port. I only have one machine running anything, so I'd like to make it listen only on the loopback device. Per the docs, I've…
Jack M.
  • 793
  • 3
  • 12
  • 21
5
votes
2 answers

How to permanently delete node?

I have deleted node with following commands: rabbitmqctl -n mynode@hostname stop_app rabbitmqctl stop_app; rabbitmqctl -n mynode@hostname reset rabbitmqctl start_app; And when I check in cluster, node is not there anymore: rabbitmqctl…
iWizard
  • 398
  • 2
  • 10
  • 26
5
votes
1 answer

RabbitMq Management plugin only on localhost

On RabbitMQ 3.5.7 Ubuntu 16.04. I want to implement RabbitMq Management plugin only on localhost, the idea is to use a tunnel to reach the RabbitMq Management Web GUI from the computer I use to connect to my server using SSH. I found this thread…
nyluje
  • 181
  • 1
  • 7
5
votes
1 answer

How to cluster rabbitmq in aws

I have tried every conceivable combination in an attempt to cluster rabbitmq in an AWS environment. But to recap: Shutdown and removed erlang and rabbit distribution on my local ubuntu 14 Tried the auto configuration modules around the web The…
5
votes
0 answers

RabbitMQ two node high availability cluster intermittently breaks with Veeam backup jobs

The environment consists of two 2012R2 Virtual Machines running RabbitMQ in high availability (ha-all) on their Queues. I use Veeam to create snapshot backups that are sent offsite as part of the DR policy. What I am seeing are intermittent…
jkarr505
  • 51
  • 2
5
votes
1 answer

Is there a way to use length of a RabbitMQ queue used by Celery to start instance in an autoscale group?

Is there any way for Celery to emit events when the length of a queue exceeds a threshold? I want to use that event to start an EC2-instance. We have two queues for two different tasks in Celery. One of these queues has tasks which will require an…
5
votes
1 answer

RabbitMQ behind Apache mod_proxy not resolving deep link

I have RabbitMQ running behind Apache mod_proxy so I can access the web management interface over port 80: ServerName rabbit.example.com ProxyRequests Off ProxyPreserveHost On Order deny,allow …
Luke
  • 3,756
  • 7
  • 35
  • 39
5
votes
4 answers

Sensu alternative (?) where alarm thresholds defined on server (not monitored client)

Question/TLDR; Is there a Sensu -alternative (i.e operating system monitoring agent/server based on RabbitMQ) that defines its alarm thresholds on the central monitoring server and not on the monitored client server (as Sensu and Nagios…
Hace
  • 51
  • 1
  • 3
5
votes
0 answers

How to make RabbitMQ start and stop faster

On Debian 10, service rabbitmq-server start takes 10 seconds; service rabbitmq-server stop takes 5 seconds. This is for a Docker development environment where load is extremely low and start/stop speed is more important than RabbitMQ performance or…
Antonis Christofides
  • 2,556
  • 2
  • 22
  • 35
4
votes
1 answer

Rabbitmq server randomly times out during server start

I have Rabbitmq server version 3.5.7-1ubuntu0.16.04.2 installed on Ubuntu 16.04 server. When the server is rebooted Rabbitmq randomly fails to start. Rabbit server is installed from official Ubuntu repository. There is no clustering, it is just one…
Madoc Comadrin
  • 540
  • 3
  • 11
  • 28
4
votes
0 answers

RabbitMQ memory leak?

I am using a single instance of RabbitMQ on a kubernetes cluster. The RabbitMQ pod has access to 15Go of RAM and is setup with a high watermark of 10Go. After a few hours of usage (and a few queues storing 60 Millions persistent messages) the UI of…
benjisail
  • 1,321
  • 5
  • 16
  • 32
4
votes
3 answers

Why is Uchiwa not able to monitor the datacenter on CentOS7?

This post combined with Install Sensu using YUM was used in order to install, configure and start Sensu and related services: sudo yum install -y erlang && \ sudo rpm -Uvh…
030
  • 5,731
  • 12
  • 61
  • 107
4
votes
1 answer

Rabbitmq Won't Talk to Active Directory

I have a rabbitmq server that I need to hook up to AD. Configuration is set using puppet rabbitmq module, with some minor manual changes (log level): % This file managed by Puppet % Template Path: rabbitmq/templates/rabbitmq.config [ {rabbit, [ …
user3081519
  • 253
  • 2
  • 13
1
2
3
14 15