Como posso visualizar todos os nós atuais do aipo em execução?

0

Estou recebendo o erro atual no meu log de batidas de aipo:

[2018-05-09 07:19:27,482: WARNING/MainProcess] /home/james/postr/env/lib/python3.5/site-packages/kombu/pidbox.py:71: UserWarning: A node named celery@postr is already using this process mailbox!

Maybe you forgot to shutdown the other node or did not do so properly?
Or if you meant to start multiple nodes on the same host please make sure
you give each node a unique node name!

  warnings.warn(W_PIDBOX_IN_USE.format(node=self))

e eu não sei onde "desligar o outro nó".

Estou usando o supervisord para executar meu aipo FYI - aqui está meu postr-celery.conf :

[program:postr-celery]
command=/home/james/postr/env/bin/celery -A post worker --loglevel=INFO
directory=/home/james/postr
user=james
numprocs=1
stdout_logfile=/var/log/supervisor/celery.log
stderr_logfile=/var/log/supervisor/celery.log
autostart=true
autorestart=true
startsecs=10

; Need to wait for currently executing tasks to finish at shutdown.
; Increase this if you have very long running tasks.
stopwaitsecs = 600

stopasgroup=true

; Set Celery priority higher than default (999)
; so, if rabbitmq is supervised, it will start first.
priority=1000

Alguma idéia de como eu posso ver os outros nós em execução (e esperamos apagá-los)?

    
por Zorgan 09.05.2018 / 10:45

0 respostas