Questions tagged [rabbitmqadmin]

The management plugin ships with a command line tool rabbitmqadmin.

The management plugin ships with a command line tool rabbitmqadmin which can perform the same actions as the web-based UI, and which may be more convenient for use when scripting. Note that rabbitmqadmin is just a specialised HTTP client; if you are contemplating invoking rabbitmqadmin from your own program you may want to consider using the HTTP API directly.

Documentation

27 questions
1
vote
1 answer

RabbitMQ get queue data does not add header data. any idea how to get it

rabbitmqadmin get queue=test requeue=false print below response +-------------+----------+---------------+--------------+------------------+-------------+ | routing_key | exchange | message_count | payload | payload_encoding | redelivered |…
0
votes
1 answer

Queues are getting deleted in RabbitMQ

So I created some queues with the command below... rabbitmqadmin --vhost=blocking-mq declare queue name="data-api-queue" durable=true auto_delete=false 'arguments={"x-message-ttl":1200000,"x-expires":1200000}' rabbitmqadmin --vhost=blocking-mq…
MohammadArik
  • 71
  • 1
  • 9
0
votes
1 answer

rabbitmqadmin == createChannel OR rabbitmqadmin == createConfirmChannel

When I send a message to a queue using 'rabbitmqadmin' the response is 'Message published', is this a confirmed delivery? From node for some important operations I use 'createConfirmChannel' and I want to do the same from bash In the rabbitmq…
Apyc
  • 307
  • 5
  • 12
0
votes
1 answer

rabbitmqadmin list queues name message_stats.publish_details.rate report 'float' object has no attribute 'encode'

when I run the command in the rabbitmq 3.6.10, "rabbitmqadmin list queues name consumers message_stats.publish_details.rate" echo AttributeError: 'float' object has no attribute 'encode' in the console.
JesseChen
  • 1
  • 1
0
votes
1 answer

RabbitMQ export vhost config

I'm running RMQ 3.83 (Erlang 22.3.1), and I am looking to export a single vhost only, with all it's relevant config (exchanges/queues/users) and then import it into our dev environment after changing a few values. Is there a way I can do that with…
0
votes
1 answer

rabbitmqadmin is not recognized on windows

'rabbitmqadmin' is not recognized as an internal or external command, operable program or batch file. I tried rabbitmq-service remove and rabbitmq-service install but not work I can't find the folder that contains rabbitmqadmin file on windows
matmahnke
  • 432
  • 3
  • 10
0
votes
1 answer

updating user in RMQ with specific role with rabbitmq python literary

I want to update the user in rmq with only permission of reading queue with python rabbitmq_admin package . What should I use in the fields of api.create_user_permission('username', '/', configure='', write='',…
0
votes
1 answer

rabbitmqadmin in windows not working properly in windows

I download rabbitmqadmin from http://localhost:15672/cli/index.html And I installed python and set its path. But when I typed commands of rabbitmqadmin, not working. python.exe rabbitmqadmin --helps The output is: no such option present python.exe…
Biplab Malakar
  • 750
  • 6
  • 11
0
votes
1 answer

Rabbitmqadmin can't open with no error

I installed correctly RabbitMQ. It is working. I also enabled RabbitMQ management plugin with: rabbitmq-plugins enable rabbitmq_management after that any rabbitmqadmin commands do not seem to work and no error is displayed : root@jessie:/usr#…
Tuncer
  • 1
0
votes
1 answer

Rabbit MQ backend http authorisation not working

I have configured rabbitmq-auth-backend-http and my rabbitmq.config looks like below [ {rabbit, [{auth_backends, [rabbit_auth_backend_http, rabbit_auth_backend_internal]}]}, {rabbitmq_auth_backend_http, [{http_method, get}, {user_path, …
Suraj
  • 1,625
  • 1
  • 15
  • 33
0
votes
1 answer

how to delete queues using rabbitmq batch files

I am using rabbitmq version 3.6.9. I don't see rabbitmqadmin in the sbin folder. Can anyone please tell me on where I can find this. I enabled rabbitmq_management as below rabbitmq-plugins enable rabbitmq_management
vinod hy
  • 827
  • 2
  • 14
  • 26
0
votes
1 answer

Running rabbitmqadmin in docker fails

I cant get the rabbitmqadmin to work in my rabbitmq docker. I have this Dockerfile: FROM rabbitmq:3-management RUN apt-get update && apt-get install -y python ADD rabbitmqadmin /usr/local/bin/rabbitmqadmin ADD rabbitconf.json /rabbitconf.json RUN…
user3594184
  • 805
  • 2
  • 9
  • 15
1
2