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
0
votes
0 answers

rabbitmq - consumer without channel

There is clustered rabbitmq. There is one connected consumer to it. root@serwer1:~# rabbitmqctl list_consumers -p vhost1 Listing consumers ... queue1.dlq amq.ctag-C5lFDLY7LZjnDdi1hjbAIA true 1000 [] ...done. There…
undefine
  • 142
  • 1
  • 15
0
votes
3 answers

Unable to Access RabbitMQ Web Interface

I have built RabbitMQ 3.7.3 from source on Ubuntu 16.04 using the following steps: 1)Installed Erlang 20.0, Elixir 1.6.1 and hex 0.17.3. 2) git clone https://github.com/rabbitmq/rabbitmq-server.git && cd rabbitmq-server/ && git checkout…
Ajay
  • 156
  • 8
0
votes
1 answer

how to reinstall a dead node in rabbitmq cluster

I have a rabbitmq cluster on rabbit1, rabbit2 and rabbit3. Rabbit2 and Rabbit3 join rabbit1 cluster as RAM node. And rabbit3 is crashed. In rabbit1 and rabbit2, when checking cluster status, the following answer I got. ubuntu@rabbit2:~$ sudo…
richard
  • 1,845
  • 1
  • 20
  • 30
0
votes
0 answers

Rabbitmqctl command throws error

I am trying to create a 3 node cluster on RabbitMQ. I have the first node up and running. When I issue join cluster command from node 2, it is throwing an error that node is down. rabbitmqctl join_cluster rabbit@hostname02 I am getting the…
sriramsm04
  • 343
  • 1
  • 7
  • 22
0
votes
1 answer

RabbitMQ Mirrored Queues on Multiple Clusters

Is it possible to use RabbitMQ HA using multiple(2) RabbitMQ clusters? Here is my requirement: We have 2 RabbitMQ clusters (each with 4 nodes). All the nodes in both the clusters will be using same Erlang cookie. So that, even though these 2…
abhdeb
  • 101
  • 1
  • 7
0
votes
1 answer

Topic based subscribe and publish with EasyNetQ

We have 2 .nwt windows services running and I am currently trying to implement a system where if System 1 is down due to any error, System 2 also has to be brought down. We are making use of RabbitMQ for the same. When SYstem 1 is down, it will…
Minu
  • 232
  • 4
  • 13
0
votes
1 answer

How can I get RabbitMQ Logs programatically?

I wants to track which message is delivered or expired. How can i get it programatically ? Help! if anyone knows about it. Thanks in Advance.
Amritesh Kumar
  • 207
  • 1
  • 5
  • 16
0
votes
0 answers

RabbitMQ - Stop publishing and subscribing

We have a system which publishes messages to the RabbitMQ and subscribes from it and each of this is done as Task in C#. Is there any way I could stop the publish and subscribe when some matching criteria is found. Lets say, for example i got an…
Minu
  • 232
  • 4
  • 13
0
votes
1 answer

RabbitMQ - How to stop a Publisher Service when Subscriber service fails with some error

I have 2 windows services in C#. Service 1 publishes messages to the RabbitMQ queue. Service 2 subscribes the RabbitMQ queue. Service 2 also connects to a TCP server and sends the messages it has received from RabbitMQ to this server. My question…
Minu
  • 232
  • 4
  • 13
0
votes
1 answer

How to scale up the queue in RabbitMQ dynamically?

can I create queue dynamically using RabbitMQ? In my application, I want the queues to scale up dynamically whenever the queue is full.can I do that with RabbitMQ? Thanks in advance.
0
votes
1 answer

Rabbitmqctl usage to do configuration

I am using RabbitMq on windows. I am trying to explore rabbitmqctl options. i could see options to purge queue, create and delete shovels. can you please tell me the rabbitmqctl usage to, 1. Create and delete exchange 2. Create and delete queues. 3.…
vinod hy
  • 827
  • 2
  • 14
  • 26
0
votes
1 answer

RabbitMQ cluster status: how to parse Erlang's beam from a shell?

I need to monitor rabbitmq cluster status. REST API doesn't provide information about partitions. So I need to use app rabbitmqctl: # rabbitmqctl cluster_status Cluster status of node 'rabbit@rabbit-1'…
martin
  • 1,707
  • 6
  • 34
  • 62
0
votes
2 answers

New Connection not getting created rabbitmq java client

I've just started studying rabbitmq. So while just doing some basic stuff in rabbitmq with java client am getting the below issue Exception in thread "main" java.util.concurrent.TimeoutException at…
Sharique
  • 781
  • 5
  • 12
  • 33
0
votes
2 answers

rabbitmq-server start losing data over durable queues

On windows, when I am using rabbitmq-server start/stop commands, data over the RabbitMQ durable queues are deleted. It seems queues are re-created when I start the RabbitMQ server. If I use rabbitmqctl stop_app/start_app, I am not losing any data.…
melihcoskun
  • 326
  • 1
  • 4
  • 19
0
votes
0 answers

rabbitmqctl shows nodedown, but not if I use Invoke-Command and supply computer name

I have RabbitMQ 3.6.5 / Erlang 18.0 installed on Windows Server 2008 R2. I know that my RabbitMQ node "rabbit@447523-testap01" is up because I can connect to it with the management UI. If I run the following command: C:\Program Files\RabbitMQ…
Andy
  • 2,709
  • 5
  • 37
  • 64