我正在尝试在 VPS 上守护我的项目。如果我从命令行运行芹菜作为
celery -A taxomat_api worker -B -l INFO
or
/var/www/html/taxomat/taxomat_api/venv/bin/celery --workdir=/var/www/html/taxomat/taxomat_api -A taxomat_api worker -B -l INFO
or
cd /var/www/html/taxomat/taxomat_api
root@taxomat:/var/www/html/taxomat/taxomat_api# venv/bin/celery -A taxomat_api worker -B -l INFO
一切正常,但是现在当我尝试使用主管将 celery 任务作为守护进程运行时,出现错误
Traceback(most recent call last):
File "/var/www/html/taxomat/taxomat_api/venv/bin/celery", line 5, in <module>
from celery.__main__ import main
File "/var/www/html/taxomat/taxomat_api/celery.py", line4, in <module>
ModuleNotFoundError: No module named 'celery.schedules'; 'celery' is not a package
这是我的 conf 文件 /path /etc/supervisor/conf.d/celery.conf/
[program:deeptechx-celery]
environment=PYTHONPATH="/var/www/html/taxomat/taxomat_api:$PYTHONPATH",DJANGO_SETTINGS_MODULE="taxomat_api.settings"
command=/var/www/html/taxomat/taxomat_api/venv/bin/celery --workdir=/var/www/html/taxomat/taxomat_api -A taxomat_api worker -B -l INFO
directory=/var/www/html/taxomat/taxomat_api
user=root
numprocs=1
stdout_logfile=/var/log/celery/worker.log
stderr_logfile=/var/log/celery/worker.log
autostart=true
autorestart=true
startsecs=10
stopwaitsecs = 600
killasgroup=true
priority=1
我的项目树是
taxomat
taxomat_api
venv
bin
celery
lib
python3.8
taxomat_api
settings.py
celery.py
workers
tasks.py
我的 celery.py 文件
from __future__ import absolute_import, unicode_literals
import os
from celery.schedules import crontab
from celery import Celery
import django
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'taxomat_api.settings')
django.setup()
app = Celery('taxomat_api')
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks()
在我的本地机器上,守护进程也可以工作。有谁能够帮我?我已经阅读了文档,尝试了很多方法,但错误是一样的。