Celery and flower: nothing in the brokerage tab

I am trying to set up a flower monitoring tool, celery. This works fine, but I do not see anything under the broker tab. I see the material under “workers,” “tasks,” and “monitor,” and the graphics are updated. I use the following to start a flower:

celery flower --broker=amqp://<username>:<password>@<ipaddress>:5672/vhost_ubuntu --broker_api=http://<username>:<password>@<ipaddress>:15672/api

Corresponding error message that I receive: cannot obtain broker information: 401 Client error: unauthorized

I can log into RabbitMQ via http: //: 15672 / with the username guest and guest guest

Any ideas as to why I cannot see the messages on the broker tab?

+4
source share
2 answers

rabbitmq.

sudo rabbitmq-plugins enable rabbitmq_management
sudo service rabbitmq-server restart

, rabbitmq.

, , .

. , , .

pip install --upgrade tornado
+2

, , , , . rabbitmq_management, , , rabbitmq . , rabbitmq-management amqp, , API .

sudo rabbitmqctl set_user_tags < >

+2

All Articles