0

我尝试使用 django-celery-email。我使用rabbitMQ

如果我运行:python manage.py celeryd -l info

我有这些错误:

(job)user@user-R520-R522-R620:~/Pulpit/job/dp$ python manage.py celeryd -l info
/home/user/Pulpit/job/local/lib/python2.7/site-packages/celery/utils/__init__.py:71: CPendingDeprecationWarning: 
    The 'BROKER_HOST' setting is scheduled for deprecation in     version 2.5 and removal in version v4.0.     BROKER_URL

  warnings.warn(w)
/home/user/Pulpit/job/local/lib/python2.7/site-packages/celery/utils/__init__.py:71: CPendingDeprecationWarning: 
    The 'BROKER_USER' setting is scheduled for deprecation in     version 2.5 and removal in version v4.0.     BROKER_URL

  warnings.warn(w)
/home/user/Pulpit/job/local/lib/python2.7/site-packages/celery/utils/__init__.py:71: CPendingDeprecationWarning: 
    The 'BROKER_PASSWORD' setting is scheduled for deprecation in     version 2.5 and removal in version v4.0.     BROKER_URL

  warnings.warn(w)
/home/user/Pulpit/job/local/lib/python2.7/site-packages/celery/utils/__init__.py:71: CPendingDeprecationWarning: 
    The 'BROKER_PORT' setting is scheduled for deprecation in     version 2.5 and removal in version v4.0.     BROKER_URL

  warnings.warn(w)
/home/user/Pulpit/job/local/lib/python2.7/site-packages/celery/utils/__init__.py:71: CPendingDeprecationWarning: 
    The 'BROKER_VHOST' setting is scheduled for deprecation in     version 2.5 and removal in version v4.0.     BROKER_URL

  warnings.warn(w)

 -------------- celery@user-R520-R522-R620 v3.0.13 (Chiastic Slide)
---- **** ----- 
--- * ***  * -- [Configuration]
-- * - **** --- . broker:      amqp://ruser@localhost:5672//
- ** ---------- . app:         default:0xa8dfb2c (djcelery.loaders.DjangoLoader)
- ** ---------- . concurrency: 2 (processes)
- ** ---------- . events:      OFF (enable -E to monitor this worker)
- ** ---------- 
- *** --- * --- [Queues]
-- ******* ---- . celery:      exchange:celery(direct) binding:celery
--- ***** ----- 

[Tasks]
  . djcelery_email.tasks.SendEmailTask

[2013-01-15 20:31:23,718: WARNING/MainProcess] celery@user-R520-R522-R620 ready.
[2013-01-15 20:31:26,735: ERROR/MainProcess] consumer: Cannot connect to amqp://ruser@127.0.0.1:5672//: Socket closed.
Trying again in 2.00 seconds...

[2013-01-15 20:31:31,746: ERROR/MainProcess] consumer: Cannot connect to amqp://ruser@127.0.0.1:5672//: Socket closed.
Trying again in 4.00 seconds...

在哪里找到错误?

4

1 回答 1

0

您的RabbitMQ实例似乎没有运行 - 这就是您consumer: Cannot connect to amqp://ruser@127.0.0.1:5672//: Socket closed.在错误日志中看到的原因。您的RabbitMQ实例是否正在运行并接受连接127.0.0.1:5672

于 2013-01-15T20:07:14.657 回答