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
helps to bind the exchange while you're at it:
channel.queue_bind(queueName, exchange)
C-;