我已经看到,当我通过普通用户执行celeryd时,我会收到权限被拒绝的错误
/opt/python2.7/bin/celeryd
但它以root用户身份执行
在文本中,它说
"Running celeryd with superuser privileges is not encouraged!")如何为user1分配celeryd的权限
发布于 2011-07-11 15:45:40
您可以通过在终端上运行以下命令,为所有用户添加执行权限:
sudo chmod u+x /opt/python2.7/bin/celeryd
https://stackoverflow.com/questions/6647080
复制相似问题