创建第一个Celery任务-Django。错误-“ ERROR / MainProcess]使用者:无法连接到amqp:// guest:**@127.0.0.1:5672 //:”

时间:2019-06-27 14:05:58

标签: django celery django-celery

我正在尝试创建我的第一个Celery任务。该任务将每隔一分钟将同一封电子邮件发送给同一个人。

根据文档,我在项目中创建了第一个任务。

from __future__ import absolute_import, unicode_literals
from celery import shared_task
from django.core.mail import send_mail


@shared_task
def send_message():
    to = ['test@test.com', ]
    send_mail('TEST TOPIC',
              'TEST MESSAGE',
              'test@test.com',
              to)

然后,在项目的ja文件夹中,添加celery.py文件,如下所示:

from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
from django.conf import settings
from celery.schedules import crontab

# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app_rama.settings')

app = Celery('app_rama')

# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
#   should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings')

# Load task modules from all registered Django app configs.
app.autodiscover_tasks(settings.INSTALLED_APPS)


app.conf.beat_schedule = {
    'send-message-every-single-minute': {
        'task': 'app.tasks.send_message',
        'schedule': crontab(),  # change to `crontab(minute=0, hour=0)` if you want it to run daily at midnight
    },
}

然后在我添加的项目的__int__.py文件中:

from __future__ import absolute_import, unicode_literals

# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app

__all__ = ('celery_app',)

最后我要做的是运行命令:

celery -A app_rama worker -l info

然后我收到以下错误:

[2019-06-27 16:01:26,750: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [WinError 10061]

我在论坛上尝试了许多解决方案,但没有找到正确的解决方案。 向我的settings.py文件中添加以下设置也无济于事:

CELERY_BROKER_URL = 'amqp://guest:guest@localhost:5672//'

如何解决此错误,以便我的任务在应用程序后台运行?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您的Celery经纪人可能配置错误。阅读“ Using RabbitMQ”文档以了解如何正确设置RabbitMQ(我假设您要在示例中使用“ amqp”协议来使用RabbitMQ)。

我建议通过Redis学习Celery,因为它更易于设置和管理。然后,一旦您学习了基础知识,就可以决定转而使用RabbitMQ或其他受支持的经纪人...

此外,请验证RabbitMQ服务器是否正常运行。如果使用Windows,请确保其上的某些软件不会阻止用户进程连接到localhost:5672。