Systemd和Gunicorn需要某种wsgi文件作为ExecStart
的最后一个arg:http://docs.gunicorn.org/en/latest/deploy.html?highlight=ExecStart#systemd
使用Django,它在主模块中为wsgi.py
:
ExecStart=/home/admin/django/bin/gunicorn --config /home/admin/src/gunicorn.py --bind unix:/tmp/api.sock myapp.wsgi
但是当使用Sanic和uvloop时,这个文件显然不存在(我相信新的协议叫做ASGI)。我试着将它替换为app.py
,这无疑不起作用:
ExecStart=/home/admin/sanic/bin/gunicorn --config /home/admin/src/gunicorn.py --bind unix:/tmp/api.sock myapp.app
使用Sanic时应该如何配置此参数?
答案 0 :(得分:1)
如果您想使用systemd启动sanic,为什么不使用supervisrod:Supervisord。
引导 - > Systemd - > supervisord - > gunicorn - >中信高科浙江
[unix_http_server]
file=/tmp/supervisor.sock ; path to your socket file
[supervisord]
logfile=/var/log/supervisord/supervisord.log ; supervisord log file
logfile_maxbytes=50MB ; maximum size of logfile before rotation
logfile_backups=10 ; number of backed up logfiles
loglevel=error ; info, debug, warn, trace
pidfile=/var/run/supervisord.pid ; pidfile location
nodaemon=false ; run supervisord as a daemon
minfds=1024 ; number of startup file descriptors
minprocs=200 ; number of process descriptors
user=root ; default user
childlogdir=/var/log/supervisord/ ; where child log files will live
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
[program:ctrlapi]
directory=/home/ubuntu/api
command=/home/ubuntu/api/venv3/bin/gunicorn api:app --bind 0.0.0.0:8000 --worker-class sanic.worker.GunicornWorker -w 2
stderr_logfile = log/api_stderr.log
stdout_logfile = log/api_stdout.log
答案 1 :(得分:0)
我还没有自己用Systend和gunicorn部署这个。但是,documentation似乎相当不错。
为了使用Gunicorn运行Sanic应用程序,您需要使用特殊的sanic.worker.GunicornWorker来处理Gunicorn工人级论点:
gunicorn myapp:app --bind 0.0.0.0:1337 --worker-class sanic.worker.GunicornWorker
考虑到这一点,这个怎么样:
ExecStart=/home/admin/sanic/bin/gunicorn --config /home/admin/src/gunicorn.py myapp:app --bind 0.0.0.0:1337 --worker-class sanic.worker.GunicornWorker
我认为你缺少的那件大事是GunicornWorker
工人阶级。