Running Celery as root
问题 I need to run my Django along with Celery as root for access reasons. It says I need to set C_FORCE_ROOT environment variable. How/where do I set the environment variable? 回答1: You can set it to true like this: # export C_FORCE_ROOT="true" Then make sure it is set as an env. variable # echo $C_FORCE_ROOT true But make sure to make it permanent, as this will vanish with the next restart Have fun :) !! 回答2: 1st solution - Manually type command at terminal $ export C_FORCE_ROOT='true' 2nd