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
1 answer

AMQP Library not loading for apache2, ubuntu 14.04

I am trying to install Rabbit MQ and the php library AMQP on Ubuntu 14.04, but am receiving an error upon apache start (in apache error log) PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/amqp.so' -…
rjbathgate
  • 185
  • 1
  • 2
  • 12
0
votes
0 answers

Rabbitmq Custom Configfile and custom port

I have installed erlang otp and rabbitmq server on a machine. I have created an environment variable 'RABBITMQ_CONFIG_FILE' with value "C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.3.1\etc\rabbitmq" (it appends .config automatically" I…
0
votes
1 answer

MCollective with RabbitMQ stops responding

Using MCollective (2.2.3) with RabbitMQ (3.1.5) on RedHat 6.5, MCollective stops responding after a first successful ping. When I restart RabbitMQ, it works again. root@rabbitmqserver# /etc/init.d/rabbitmq-server restart Restarting rabbitmq-server:…
raphink
  • 11,987
  • 6
  • 37
  • 48
0
votes
1 answer

How can I prevent the proliferation of stale/false RabbitMQ connection objects in the management plugin without upgrading the server?

Context: We use a RabbitMQ 2.8.4 HA cluster for messaging across a mid-size (hundreds to thousands of servers) datacenter. The messaging functions are critical to our app. We use the C client API for AMQP/RabbitMQ operations, and the HTTP API to…
Zac B
  • 841
  • 1
  • 15
  • 27
0
votes
1 answer

Rabbitmq-server status intermittent failures

Rabbitmq-server package from ubuntu precise: 2.7.1-0ubuntu4 sudo service rabbitmq-server status and sudo rabbitmqctl status are flip-flopping between running and not running: ubuntu@juju-cstack-machine-2:~$ sudo service rabbitmq-server status Status…
dpb
  • 445
  • 5
  • 16
0
votes
1 answer

Graphite metrics from AMQP throws error, takes ages to reconnect

I'm trying to pull some metrics into Graphite over a RabbitMQ exchange. I've got my publishers merrily publishing data to an exchange called metrics, and I've configured carbon.conf with the following: ENABLE_AMQP = True AMQP_HOST =…
growse
  • 8,020
  • 13
  • 74
  • 115
0
votes
1 answer

OpenStack Quantum Log shows AMQP server on :5672 is unreachable: Socket closed

In an OpenStack Folsom installation, my quantum server logs at /var/log/quantum/server.log shows: 2013-02-06 11:51:38 INFO [quantum.openstack.common.rpc.common] Reconnecting to AMQP server on 10.0.0.1:5672 2013-02-06 11:51:38 DEBUG [amqplib]…
0
votes
2 answers

MCollective cannot load the Stomp library?

CentOS 5.5 I'm facing with this problem when restarting mcollective: # service mcollective restart Shutting down mcollective: Starting mcollective: /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require': no such file to…
quanta
  • 51,413
  • 19
  • 159
  • 217
0
votes
2 answers

Erlang install error on Fedora 13

I am attempting to install RabbitMQ on a Fedora 13 box. This requires Erlang is installed. When I run yum install erlang I get the following messages. Yum seems to indicate that it resolved all the dependencies, yet it keeps failing to install. If I…
Andy
  • 195
  • 1
  • 1
  • 10
0
votes
3 answers

Debian Squeeze: how to find out if RabbitMQ is installed?

According to the RabbitMQ docs, the RabbitMQ server is already installed on Debian 6 Squeeze. rabbitmq-server is included in Debian since 6.0 (squeeze) and in Ubuntu since 9.04. I tried to start it via SSH and invoke-rc.d rabbitmq-server start but…
alpjaeno
  • 3
  • 2
0
votes
2 answers

Bypass "Package Configuration" Screen

I'm trying to setup my Ubuntu image via a script over on AWS and I can't get rabbitmq-server to install. It throws a Package Configuration screen that simply has one option (hit OK). How can I bypass this? It causes my script to hang
0
votes
0 answers

Unable to reach RabbitMQ management console over SSL

I'm having a strange problem. I have installed RabbitMQ on Debian 12. There was a small issue during installation - I could not pass dependency of erlang-crypto with libssl1.1 - the one which I had on my system was not compatible with that package,…
Kal800
  • 3
  • 1
0
votes
0 answers

Kubernetes yaml not working on Rabbitmq cluster

I have a Rabbitmq Kubernetes cluster version 3.10.2 running on Azure AKS. I have applied cluster operator using. kubectl apply -f "https://github.com/rabbitmq/cluster-operator/releases/latest/download/cluster-operator.yml" Now I have created a…
user3014588
  • 101
  • 2
0
votes
0 answers

RabbitMQ CPU Usage Spikes

I've installed RabbitMQ on kubernetes(k3s) on ARM (Oracle OCI Ampere A1) using the community docker image. I'm seeing very regular periodic CPU usage spikes (two series of spikes, both with a period of 60 seconds and offset by about 20 or so…
0
votes
1 answer

How to make rabbitmq management console available for local host (127.0.0.1) and server's external IP address

I want my rabbitmq management console configured for both localhost (127.0.0.1) and IP address 10.10.136.19. I changed the attribute "management.tcp.ip" in rabbitmq.conf, but could not find any of them working. Can some one shed some light here?