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
1 answer

Rabbitmq set user only sub

How to add a user can only Subscribe but not Publish? on Publish/Subscribe https://www.rabbitmq.com/tutorials/tutorial-three-python.html
Y. HSUN LU
  • 31
  • 1
  • 5
0
votes
0 answers

Spring cloud stream rabbitmq - consumer retries 3 times for all exception

I am trying to stop the retires for my spring boot cloud application completely or retry for only specific exceptions I have tried several ways to completely stop it from retrying 3 times I set the following configuration but even then it…
0
votes
0 answers

RabbitMQ - need to close all connections, but close_all_connections doesn't work

We have a set of client PCs running a Windows application that is a client that opens connections to an instance of RabbitMQ 3.7.7 (Erlang 20.3) running on a Windows 2016 server. Our client application opens a connection on startup. If it can't…
Rptx
  • 1
  • 2
0
votes
0 answers

can't configure RabbitMQ , We are in process of deploying Rabbitmq clustering in our windows environment

i am fresh towards MQ’s, We are in process of deploying Rabbitmq clustering in our windows environment. Can you please advise if its recommended to work with windows environment for RMQ?
0
votes
0 answers

TCP Connection succeeded but Erlang distribution failed.RabbitMQ

I have three servers I am trying to add to a cluster. bus01, bus02, bus03 When I try to run any command in bus02 or bus03 I am getting the following error: DIAGNOSTICS attempted to contact: [rabbit@bus02] rabbit@bus02: connected to epmd (port…
Ross
  • 2,463
  • 5
  • 35
  • 91
0
votes
2 answers

Rabbitmq: Unable to join_cluster from a node using FQDN to a node without FQDN

I have a cluster with 2 nodes, neither of them is using FQDN: rabbit@server1, and rabbit@server2. Now i am adding a 3rd rabbitmq node, which uses FQDN: rabbit@server3.mycompany.com. When I run rabbitmqctl join_cluster rabbit@server1 Clustering node…
topcan5
  • 1,511
  • 8
  • 30
  • 54
0
votes
1 answer

Docker rabbitmq image error when building "Unable to perform operation on node"

I am having an error when trying to build image with: docker-compose build Error: docker-compose.yml file: version: '3' services: rabbitmq: container_name: hrabbitmq image: hyperloopupv:rabbitmq build: './rabbitmq' ports: …
0
votes
1 answer

Combine ha-mode with queue-master-locator in a RabbitMQ cluster

In a RabbitMQ cluster, I know that the queues can be created with their masters on different nodes, using the "min-masters" strategy of the "queue_master_locator" policy. This would mean that the queues are no longer mirrored(ha-mode policy cant be…
0
votes
4 answers

rabbitmq access to vhost denied

I set up a controller host with rabbitmq-server running. From the nova host, I see that the nova-conductor cannot be reached. I checked on the controller host and I see the following in the logs : access to vhost 'None' refused for user…
0
votes
0 answers

I changed disk limit of rabbitmq and now can't restart it.

I am very new to rabbitMQ. I get getting disk limit full error so I thought of changing the disk limit. I executed following command in sequence: #1. rabbitmqctl set_disk_free_limit 1GB #2. sudo systemctl stop rabbitmq-server.service #3. sudo…
Sunny Jain
  • 25
  • 1
  • 5
0
votes
1 answer

RabbitMQ closes socket while amqp_login call

I am using an example code from ..\rabbitmq-c\examples in order to create a connection to my http://localhost:15672. From the following code block I get: Logging in: socket is closed output amqp_socket_t *socket = NULL; amqp_connection_state_t…
mystic.06
  • 189
  • 8
0
votes
0 answers

How to track celery and rabbitmq in production server

I have installed both celery and rabbitmq. Now i would like to track how many messages are there in the queue and how it is distributed, want to see the list of celery consumers and tasks they are executing etc. this is bcoz i had issues with celery…
Kireeti K
  • 1,370
  • 1
  • 19
  • 32
0
votes
1 answer

Default rabbitmq exchange type

As per my understanding RabbitMQ server by default creates exchange of type Direct i.e If I create exchange without providing any type it will create exchange of type Direct.Is there any way by which I can change default behavior i.e default…
user4235401
0
votes
1 answer

RabbitMQ create custom user roles

i have tried creating a user with different policies to achieve my requirement, i want to create a user which have privilege to create users but not to delete so far i have failed. Please help
frodo
  • 51
  • 2
  • 11
0
votes
0 answers

Disable http Trace method in RabbitMq

I want to block/disable HTTP TRACE method on RabbitMq. Basically, what I want is, when we hit RabbitMQ HTTP port like below, it should say, "HTTP/1.1 405 Method Not Allowed" for TRACE method. $curl -v -X TRACE http://server-name:15672
Abhijit Patil
  • 136
  • 1
  • 4