gpt4 book ai didi

django - Supervisor FATAl Exited too quickly (process log may have details(About inet_http_server and unix_http_server)

转载 作者:IT王子 更新时间:2023-10-29 00:37:39 28 4
gpt4 key购买 nike

我写了一个 Django 项目,我用 supervisor 和 gunicorn

/etc/supervisor/conf.d/weather.conf

[group:weather_station]
programs=site

[program:site]
directory=$PROJECT
command=/home/nhcc/.local/bin/gunicorn -c /$PROJECT/weather_station/gunicorn.conf.py -p gunicorn.pod weather_station.wsgi
autostart=true
autorestart=true
stdout_logfile=/var/log/supervisor.log
environment=my-environment-variable
~

sudo supervisorctl 重读

sudo supervisorctl reload

sudo supervisorctl 状态

显示错误

weather_station:site FATAL Exited too quickly (process log may have details)

所以我检查了日志文件:

/var/log/supervisor/supervisord.log

2017-09-08 17:15:25,000 CRIT Supervisor running as root (no user in config file)

2017-09-08 17:15:25,000 WARN Included extra file "/etc/supervisor/conf.d/weather.conf" during parsing

2017-09-08 17:15:25,007 INFO RPC interface 'supervisor' initialized

2017-09-08 17:15:25,008 CRIT Server 'inet_http_server' running without any HTTP authentication checking

2017-09-08 17:15:25,008 INFO RPC interface 'supervisor' initialized

2017-09-08 17:15:25,008 CRIT Server 'unix_http_server' running without any HTTP authentication checking

2017-09-08 17:15:25,008 INFO supervisord started with pid 32371

2017-09-08 17:15:26,013 INFO spawned: 'site' with pid 32447

2017-09-08 17:15:26,018 INFO exited: site (exit status 127; not expected)

2017-09-08 17:15:27,022 INFO spawned: 'site' with pid 32448

2017-09-08 17:15:27,026 INFO exited: site (exit status 127; not expected)

2017-09-08 17:15:29,032 INFO spawned: 'site' with pid 32449

2017-09-08 17:15:29,038 INFO exited: site (exit status 127; not expected)

2017-09-08 17:15:32,043 INFO spawned: 'site' with pid 32451

2017-09-08 17:15:32,059 INFO exited: site (exit status 127; not expected)

2017-09-08 17:15:33,060 INFO gave up: site entered FATAL state, too many start retries too quickly

根据包含的额外文件 the solution

根据 服务器 'unix_http_server' 在没有任何 HTTP 身份验证检查的情况下运行 the solution

我添加了两个部分 [unix_http_server] 和 [inet_http_server]

[unix_http_server]
file=/var/run/supervisor.sock ; (the path to the socket file)
chmod=0766 ; socket file mode (default 0700)
;chown=nobody:nogroup ; socket file uid:gid owner
;username=user ; (default is no username (open server))
;password=123 ; (default is no password (open server))

[inet_http_server] ; inet (TCP) server disabled by default
port=*:9001 ; (ip_address:port specifier, *:port for all iface,
;username=user ; (default is no username (open server))
;password=123 ; (default is no password (open server))

这是当前的supervisor.conf

[unix_http_server]
file=/var/run/supervisor.sock ; (the path to the socket file)
chmod=0766 ; socket file mode (default 0700)

[supervisord]
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP)

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

[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket

[inet_http_server] ; inet (TCP) server disabled by default
port=*:9001 ;

[include]
files = /etc/supervisor/*.conf
files = /etc/supervisor/conf.d/*.conf

然后我跑了

sudo supervisord -c /etc/supervisor/supervisord.conf
sudo supervisorctl -c /etc/supervisor/supervisord.conf

然后我跑

sudo supervisorctl 重读

sudo supervisorctl reload

我又检查了一遍日志

错误完全一样

有人知道为什么吗?

最佳答案

尝试:

    # service supervisord stop
# supervisord -c /etc/supervisor/supervisord.conf

然后检查状态:

    # supervisorctl status

关于django - Supervisor FATAl Exited too quickly (process log may have details(About inet_http_server and unix_http_server),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46132159/

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