RabbitMQ creating queues and bindings from command line

后端 未结 11 1618
时光取名叫无心
时光取名叫无心 2020-12-12 15:25

If I have RabbitMQ installed on my machine, is there a way to create a message queue from the command line and bind it to a certain exchange without using a client?

I

11条回答
  •  北荒
    北荒 (楼主)
    2020-12-12 16:16

    helps to bind the exchange while you're at it:

    channel.queue_bind(queueName, exchange)
    

    C-;

提交回复
热议问题