Magento – NOT_FOUND – no queue ‘async.operations.all’ in vhost ‘/’ : RabitMQ : Magento 2.3 EE

cronmagento2-enterprisemagento2.3rabbit-mq

I am integrating RabbitMQ with magento 2.3. EE ,

When I try to run cron It is giving me below error

NOT_FOUND – no queue 'async.operations.all' in vhost '/'

Can anyone help me on this.

Best Answer

Make sure that app/etc/env.php queue array is configured like in Magento's docs.

Run bin/magento setup:upgrade which will create the queues if not already created.

use bin/magento queue:consumers:start async.operations.all to consume, it will terminate when nothing is left in the queue so set it up from cron or something similar.

Related Topic