gpt4 book ai didi

python - supervisord 总是在 WebFaction 返回退出状态 127

转载 作者:太空狗 更新时间:2023-10-30 01:51:01 25 4
gpt4 key购买 nike

在跟踪日志时,我不断从 webFaction 的 supervisord 收到以下错误:

INFO exited: my_app (exit status 127; not expected)
INFO gave up: my_app entered FATAL state, too many start retries too quickly

这是我的 supervisord.conf:

[unix_http_server]
file=/home/btaylordesign/tmp/supervisord.sock

[rpcinterface:supervisor]
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///home/btaylordesign/tmp/supervisord.sock

[supervisord]
logfile=/home/btaylordesign/tmp/supervisord.log
logfile_maxbytes=50MB
logfile_backups=5
loglevel=info
nodaemon=false
pidfile=/home/btaylordesign/tmp/supervisord.pid supervisord.pid

[program:my_app]
directory=/home/btaylordesign/webapps/my_app/my_app
command=celery worker -A my_app --concurrency=3 --loglevel=debug

我从与 supervisord.conf 相同的目录启动 supervisord:

$ supervisord -c ./supervisord.conf

但我似乎无法找到正确的设置组合。我需要能够做三件事:

  1. 在后台启动我的 celery worker 并让它们保持运行。
  2. 在部署代码时停止 celery worker。
  3. 部署完成后重启 celery worker。

但是,在解决错误之前,我无法执行任何操作。我做错了什么?

最佳答案

退出代码 127 表示“找不到命令”:

http://www.tldp.org/LDP/abs/html/exitcodes.html

尝试将完整路径传递给 celery 命令:

command=/home/something/bin/celery worker -A my_app --concurrency=3 --loglevel=debug

此外,尝试在 [program:x] 部分中设置 redirect_stderrstdout_logfile 选项以捕获错误消息并使调试更容易.

关于python - supervisord 总是在 WebFaction 返回退出状态 127,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28620656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com