I have seen that when i execute celeryd via normal user then i get permission denied error

/opt/python2.7/bin/celeryd

But it executes with root user

In the text it says that

"Running celeryd with superuser privileges is not encouraged!")

How can i assign previlege to user1 for celeryd

link|improve this question

67% accept rate
Possible duplicate of stackoverflow.com/questions/2009278/… regarding POSIX shared memory. – stw_dev Dec 21 '11 at 17:43
feedback

1 Answer

You can add execute permissions for all users by running the following in a terminal:

sudo chmod u+x /opt/python2.7/bin/celeryd

link|improve this answer
The permission is already executable by all abd read all – user825904 Jul 11 '11 at 8:18
Wait, why are you trying to run it? Don't all you need to do is install it via pip install -U Celery then import it: from celery.task import task? I don't think you need to 'run' it at all... – Dirk Jul 11 '11 at 16:25
As I understand it, when you call the task (i.e. mytask.delay(*args, **kwars) it then sends that task to the celery daemon to perform it. So the daemon needs to be running for the task to complete. – Jordan Reiter Apr 19 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.