Summary
- I am running Celery as a daemon via celeryd (as per instructions)
- Specified redis as the broker in the configuration file /etc/default/celeryd BROKER_URL="redis://localhost:6379/0"
- Worker log file indicates that BROKER_URL is being ignored as it is still attempting to connect to the default broker.
ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@localhost:5672//: Error opening socket: a socket error occurred.
Question: Do I need to modify the /etc/init.d/celeryd file beyond the basic template that was provided in the online instructions in order for BROKER_URL to be passed as an argument?