Questions tagged [rabbitmqctl]

command line tool for managing a RabbitMQ broker

RabbitMQ is an implementation of AMQP, the emerging standard for high performance enterprise messaging. The RabbitMQ server is a robust and scalable implementation of an AMQP broker.

rabbitmqctl is a command line tool for managing a RabbitMQ broker. It performs all actions by connecting to one of the broker's nodes. See the man page for further details

Diagnostic information is displayed if the broker was not running, could not be reached, or rejected the connection due to mismatching Erlang cookies.

224 questions
2
votes
1 answer

RabbitMQ Shovel plugin in a cluster

We have a RabbitMQ cluster with three nodes configured. Each node has two virtual hosts (Vhost-A and Vhost-B). We need a possibility to move messages from Vhost-A to Vhost-B. To accomplish this, we setup a shovel directing messages from Exchange-1…
froeschli
  • 2,692
  • 2
  • 28
  • 55
2
votes
3 answers

How to install rabbitmq plugin on kubernetes?

I have a Kubernetes environment with a rabbitmq servirve who deploys 2 pods of rabbitmq. I need to install a plugin on rabbitmq, (Delayed Message Plugin) but I don't like the "manual" way, so if the pod is deleted, I have to install the plugin…
dragonalvaro
  • 703
  • 1
  • 10
  • 28
2
votes
1 answer

RabbitMQ nodes not able to discover each other and join cluster

I'm new to RabbitMQ and trying to setup a Highly Available Queue using statefulsets. The tutorial I followed is here After deploying the statefulset and service to kubernetes, The nodes are not able to discover each other in the cluster and the…
StarJedi
  • 1,410
  • 3
  • 21
  • 34
2
votes
1 answer

Unable to launch rabbitmq management console in Windows

On a Windows 7 Enterprise 64 Bit OS, I installed Erlang (otp_win64_20.0.exe) and RabbitMQ 3.6.9 (64bit) as standalone one. I have set System Variable for ERLANG_HOME. The installation was successful and RabbitMQ service is running. But when I…
VeeAar
  • 91
  • 1
  • 12
2
votes
0 answers

RabbitMQ broker topic and messages list

I have created a MQTT topic from Python client on the RabbitMQ broker installed in localhost . I am publishing few messages in this topic and able to see those in MQTTLens Chrome plug-in also from the Subscriber written in Python. Where to see the…
JavaUser
  • 25,542
  • 46
  • 113
  • 139
2
votes
1 answer

RabbitMQ - Discard message if it is taking too long to process

Is there any way to make RabbitMQ discard the message if it is taking too long to process? For example, if I have an email queue and the consumer script is taking too long to send the email, make it discard the message (put it in the dead letter…
Kamran Ahmed
  • 11,809
  • 23
  • 69
  • 101
2
votes
2 answers

How to delete rabbitmq shovels through commandline

I created shovels using , rabbitmqctl set_parameter shovel "MyShovel" ...... Now i want to delete it, Can you please tell me on how to achieve it using commandline.
vinod hy
  • 827
  • 2
  • 14
  • 26
2
votes
1 answer

Cannot Start RabbitMQ node after erlang cookie change

I am new to RabbitMQ. Trying to make cluster of 3 nodes on RHEL 7 server. Need to make node3 as master and node1,node2 as its slaves. I copied .erlang.cookie content of master node to the slave nodes. Tried to make cluster but nodedown error msg…
2
votes
1 answer

Why not start rabbitmq-server?

Good evening. Faced with the problem: at some point the message broker "floating" (stopped updating the web interface and make the connection). When you try to restart rabbitmq-server start command process stops responding after the message…
2
votes
1 answer

Is it okay to delete RabbitMQ's `/` VHost?

In our environment, we have several RabbitMQ VHosts defined: one for dev, one for qa, one for staging and so on. The default VHost / is unused and shows no users as having access, nor does it have any exchanges or queues defined. Is it okay to run…
smitelli
  • 6,835
  • 3
  • 31
  • 53
2
votes
2 answers

How to publish and consume make(map[string]string) in rabbitmq go lang

I have multiple objects of key-value type which i need to send to RabbitMQ and hence forward would consume them. So, after going through this RabbitMQ link. It only tells the way to publish a simple plain text message. Can anyone tell me how to…
Naresh
  • 5,073
  • 12
  • 67
  • 124
2
votes
1 answer

How does Rabbitmq fanout works internally?

We use rabbitmq in production and really happy with it. we are planning to use rabbitmq fanout feature, but would like to understand the internals. Here are my questions: 1. When a message is fan'ed out to multiple queues, is the message copied to…
bala
  • 21
  • 1
2
votes
1 answer

check and create amqp virtual host (vhost) in python (pika)

I am new to pika (https://github.com/pika/pika). I wonder whether there are APIs to check whether one virtual host exists or not, and whether there are APIs to create virtual host. I know that vhost can be created by rabbitmqctl, but I did not find…
BAE
  • 8,550
  • 22
  • 88
  • 171
2
votes
0 answers

Rabbitmq exception com.rabbitmq.client.PossibleAuthenticationFailureException: Possibly caused by authentication failure

below is my java code i am using to create rabbitmq connection for creating index into elasticsearch, which throws exception. when i use factory.setHost("localhost"); instead of factory.setHost("192.168.xx.xxx"); it works fine but when i use IP it…
Rikhi Sahu
  • 655
  • 1
  • 7
  • 19
2
votes
2 answers

Change port for rabbitmqctl

You can specify a node for rabbitmqctl, but not a port. On Ubuntu, the only way to get rabbitmqctl via package is to install the full server. There are zero actionable Google search results regarding passing a port into rabbitmqctl. Does that imply…
Dustin Oprea
  • 9,673
  • 13
  • 65
  • 105