MarkO
MarkO

Reputation: 795

Location of celeryd folder on Ubuntu?

I'm following instructions to setup djcelery in production.

Download the daemon script : https://github.com/ask/celery/blob/master/contrib/generic-init.d/celeryd

Put it in /etc/init.d/celeryd

However, I don't have a folder in /etc/init.d/ called celeryd.

I'm running Ubuntu, celery works if I run manage.py celeryd -l info so its all setup and installed correctly.

Where is the correct folder to add the script on Ubuntu?

Upvotes: 1

Views: 229

Answers (1)

Pavel Anossov
Pavel Anossov

Reputation: 62898

They meant "put it in /etc/init.d/ as celeryd". Since it's already named celeryd, just put it in /etc/init.d.

Upvotes: 2

Related Questions