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
2 answers

Cannot connect to rabbitmq (or even stop it) after moving laptop to another network

I have installed RabbitMQ on my laptop. I start the server (rabbitmq-server -detached) and then rabbitmqctl start_app, and things work fine (my Java application can connect and send/receive messages). $ rabbitmqctl start_app Starting node…
Mahdi
  • 1,778
  • 1
  • 21
  • 35
0
votes
3 answers

RabbitMQ: How to delete/move messages in queue from curl

I've multiple RabbitMQ Servers. I need an interface(with JSP) where i can manage(delete queues/exchanges/messages) of all these servers . Internally I'll call the curl commands to do the operations. Example: To create queue curl -i -u test:test -H…
Anil Kumar
  • 2,521
  • 7
  • 23
  • 40
0
votes
1 answer

RabbitMQ durability with mirrored queues and PerfTest

I have RabbitMQ cluster setup with a mirrored queue. The client code works fine with it and when a server is down, the other one handles the requests. I wanted to do some perf tests on this. For this, I used rabbitmq-client-tools (PerfTest). sh…
Confused
  • 617
  • 1
  • 9
  • 17
0
votes
1 answer

Send email after crossing 'n' number of messages in dead letter exchange

Is there a proprietary way in rabbitMQ(configurable) to automatically notify our DL after crossing few number of message in dead lettered exchange via some plugins(management plugins).
lambodar
  • 3,495
  • 5
  • 34
  • 58
0
votes
2 answers

custom nagios script with nrpe resulting in non-zero exit status 1

I am trying to run a python script using nrpe to monitor rabbitmq. Inside the script is a command 'sudo rabbiqmqctl list_queues' which gives me a message count on each queue. However this is resulting in nagios giving htis message: CRITICAL -…
Praveen R.
  • 241
  • 4
  • 15
0
votes
1 answer

rabbitMQ nodedown error from Dockerfile

When building this Dockerfile, when it gets to the command: rabbitmqctl status It Returns: Error: unable to connect to node rabbit@d3659c5e113e: nodedown DIAGNOSTICS =========== nodes in question: [rabbit@d3659c5e113e] hosts, their running nodes…
Will Mayger
  • 41
  • 1
  • 4
0
votes
0 answers

Error Error: {'EXIT', {function_clause, [{rabbit_control_main,action,

I am trying this command rabbitmqctl eval '{ok, Q} = rabbit_amqqueue:lookup(rabbit_misc:r(<<"/">>, queue, <<"test">>)), [{pid, Pid}] = rabbit_amqqueue:info(Q, [pid]), exit(Pid, bang).' to shut down a queue in order to generate NACK, but I am…
RadiumBall
  • 23
  • 6
0
votes
1 answer

Rabbitmq Acking in multiple consumers

I have a queue on which multiple consumers are working in round robin fashion. Delivery_tag is used to ack messages once consumer is done with its processing. But multiple consumers are setting same delivery_tag, though the message on which they are…
0
votes
1 answer

How can I open a console command for the erlang application of RabbitMQ

I would like to start the rabbitmqserver with the virtual machine and no the scripts something likke rabbitmq-server console, is there any such command or way to start the server?
user1000622
  • 519
  • 1
  • 7
  • 18
0
votes
1 answer

$ sign in the middle of Rabbit MQ password does not work

I have changed the password using rabbitmqctl command like below rabbitmqctl change_password CPSCUser Waseem$1234 Changing password for user "CPSCUser" ... ...done. Now when i login with the CPSCUser from the management console…
0
votes
1 answer

RabbitMQ on Windows - enable the Firehose on service restart

Is there a way to setup RabbitMQ in a way that the Firehose is autamatically enabled (for a single virtual host preferably) after a Windows or RabbitMQ service restart?
Test_me
  • 393
  • 4
  • 13
0
votes
1 answer

How can I determine which nodes in my rabbitmq cluster are HA?

I have a clustered HA rabbitmq setup. I am using the "exactly" policy similar to: rabbitmqctl set_policy ha-two "^two\." \'{"ha-mode":"exactly","ha-params":10,"ha-sync-mode":"automatic"}' I have 30 machines running, of which 10 are HA nodes with…
jeffrey
  • 3,196
  • 7
  • 26
  • 44
-1
votes
1 answer

How can i move UnAck messages to ready state in RabbitMQ

There are some of the messages got stuck in UnAck state in RabbitMQ. Is there any way to move them to ready state without restarting the consumer application or without restarting the RabbitMQ server?
-1
votes
1 answer

Does RabbitMQ support execution of process from queue by time?

Can I store time in RabbitMQ for call handler in this time? Does RabbitMQ support this?
Oleg
  • 151
  • 2
  • 3
  • 12
1 2 3
14
15