Executando Celery como um daemon

1

Estou testando o Celery com RabbitMQ no Ubuntu11.04 em um projeto python que não é um projeto de django. Eu tenho meu celeryconfig.py e meu arquivo test.py em / mypath / myproject /. Meu /etc/default/celeryd é assim:

# Where to chdir at start.
CELERYD_CHDIR= "/mypath/myproject/"

# Extra arguments to celeryd
CELERYD_OPTS=”–time-limit=300”

# Name of the celery config module.#
CELERY_CONFIG_MODULE=”celeryconfig”

Quando executo sudo /etc/init.d/celeryd start , recebo esta mensagem de erro:

/etc/default/celeryd: line 2: /mypath/myproject/: Is a directory

Alguma ideia? Eu segui estas instruções .

    
por itgorilla 13.07.2011 / 20:08

1 resposta

2

É o espaço extra depois do sinal de igual. Você quer:

CELERYD_CHDIR="/mypath/myproject/"
    
por 02.08.2011 / 14:49