3

I've several project's on one server, which use celery package with different BROKER_URL. Flower allows one BORKER_URL as command option:

celery flower --broker=amqp://guest:guest@localhost:5672//

How can i run one flower process for all brokers?

Henry
  • 117
  • 7
  • Can't find a way to run one flower for two brokers. If i give two `broker` arguments, it throws error. If i try to instantiate separately, it gives socket error as previous process is running on same port. Why do you want to run one flower for all brokers? – Chillar Anand Sep 10 '14 at 17:57
  • Because it is easier to monitor projects from one address. – Henry Sep 11 '14 at 07:04

1 Answers1

3

You can't. I run multiple instance, one per broker.

ant31
  • 4,471
  • 4
  • 15
  • 20