Top "Rabbitmq" questions

RabbitMQ is an open-source message broker originally implementing the AMQP protocol with additional messaging protocols supported via a plug-in architecture.

RabbitMQ C# API Event based Message Consumption

while (true) { BasicDeliverEventArgs e = (BasicDeliverEventArgs)Consumer.Queue.Dequeue(); IBasicProperties properties = e.BasicProperties; byte[] body = e.Body; Console.WriteLine("Recieved Message : " + …

c# api rabbitmq producer-consumer
How to do error handling with EasyNetQ / RabbitMQ

I'm using RabbitMQ in C# with the EasyNetQ library. I'm using a pub/sub pattern here. I still have a …

c# error-handling rabbitmq message-queue easynetq
how to setup basic rabbitmq on kubernetes

I need to setup a basic rabbit mq instance (no cluster setup) without persistence or security requirements on a kubernetes …

kubernetes rabbitmq kubernetes-ingress kubernetes-statefulset
Create vHost on Windows RabbitMQ node using command line

I have a RabbitMQ node on windows operating system. I want to create vhost on that node from command line …

rabbitmq rabbitmqctl
RabbitMQ log and Mnesia location in Environment variables not reflecting?

I want to change the Rabbitmq MNESIA dir to /disk folder instead of default /var/lib. I did the change …

rabbitmq rabbitmqctl
Does RabbitMQ call the callback function for a consumer when it has some message for it?

Does RabbitMQ call the callback function for a consumer when it has some message for it, or does the consumer …

php messaging rabbitmq sharding
RabbitMQ not starting with message "init terminating in do_boot, noproc" on Ubuntu 18.04

I cannot seem to start or install my RabbitMQ server anymore for my Ubuntu 18.04 anymore. I tried to remove and …

rabbitmq erlang dump
RabbitMQ install issue on Centos 5.5

I've been trying to get rabbitmq-server-2.4.0 up and running on Centos 5.5 on an Amazon AWS instance. My instance uses the …

erlang rabbitmq centos5
Getting "pika.exceptions.ConnectionClosed" error while using rabbitmq in python

I am using "hello world" tutorial in :http://www.rabbitmq.com/tutorials/tutorial-two-python.html . worker.py looks like this import …

python rabbitmq pika
Spring with AMQP and RabbitMQ, queue with optional x-dead-letter-exchange

I have an existing queue created in RabbitMQ. It can be created with or without x-dead-letter-exchange parameter. I am creating …

java spring rabbitmq amqp spring-amqp