I've got Celery flower + rabbitmq setup running on my local box with the UI on localhost:5555 displaying an empty list of workers. Now, on a remote machine I have a celery flower connected to the same broker like the following:
server (local setup): celery flower --broker=amqp://guest:guest@localhost:5672// remote: celery flower --broker=amqp://smurf@remotemachine:5672//
The connection is successful when I view the connections tab in rabbitmq, however when flower does not list the worker through the web-ui. Why would it connect successfully to rabbitmq but not show on flower?
Thanks in advance.