我正试图在Ubuntu 12.04系统中从Supervisor运行Gunicorn。 Gunicorn运行Flask应用程序(使用Flask的嵌入式服务器测试简单的REST Web服务)。我已经通过克隆GIT仓库安装了Gunicorn,试图避免'apt-get install',因为它在安装时运行Gunicorn服务器。我不希望它运行,它只由Supervisor运行。
所以在安装之后,如果我尝试:
cd /usr/local/bin
gunicorn my_app:app -c /path/to/gu_config_file
Gunicorn的作品。然后我杀了它。注意没有扩展名的配置文件,因为“.py”扩展名对我不起作用。 所以我编辑Supervisor的配置文件,如:
[program:gunicorn]
command=/usr/local/bin/gunicorn my_app:app -c /path/to/.gu_setup
directory=/usr/local/bin/
autostart=true
autorestart=true
redirect_stderr=True
并在主管中更新更改:
supervisorctl reread
# gunicorn: changed
supervisorctl update
# gunicorn: stopped
# gunicorn: updated process group
检测文件中的更改并适用于Gunicorn程序。好的,但后来我尝试启动它:
supervisorctl start gunicorn
烦人:
gunicorn: ERROR (abnormal termination)
检查主管的日志:
2013-03-08 13:07:22,378 INFO spawned: 'gunicorn' with pid 3355
2013-03-08 13:07:22,916 INFO exited: gunicorn (exit status 3; not expected)
2013-03-08 13:07:23,918 INFO spawned: 'gunicorn' with pid 3361
2013-03-08 13:07:24,492 INFO exited: gunicorn (exit status 3; not expected)
2013-03-08 13:07:26,496 INFO spawned: 'gunicorn' with pid 3367
2013-03-08 13:07:27,078 INFO exited: gunicorn (exit status 3; not expected)
2013-03-08 13:07:30,085 INFO spawned: 'gunicorn' with pid 3373
2013-03-08 13:07:30,628 INFO exited: gunicorn (exit status 3; not expected)
2013-03-08 13:07:31,630 INFO gave up: gunicorn entered FATAL state, too many start retries too quickly
我现在不知道该怎么做......你能帮助我吗? 很多!
编辑:抱歉,我忘了说我已经将PYTHONPATH变量导出为:
export PYTHONPATH=/usr/local/bin:/usr/local/lib/project
'my_app'位于/ usr / local / bin中。其他模块需要lib路径。 我还编辑了Supervisor配置文件以指示环境变量,如:
environment=PYTHONPATH=/usr/local/bin:/usr/local/lib/project/
但没效果。
编辑2:正如@robertklep在他的评论中所说,这是日志的输出:
Traceback (most recent call last):
File "/tmp/gunicorn/gunicorn/arbiter.py", line 485, in spawn_worker
worker.init_process()
File "/tmp/gunicorn/gunicorn/workers/base.py", line 100, in init_process
self.wsgi = self.app.wsgi()
File "/tmp/gunicorn/gunicorn/app/base.py", line 103, in wsgi
self.callable = self.load()
File "/tmp/gunicorn/gunicorn/app/wsgiapp.py", line 25, in load
return util.import_app(self.app_uri)
File "/tmp/gunicorn/gunicorn/util.py", line 369, in import_app
__import__(module)
File "/usr/local/bin/my_app.py", line 4, in <module>
import const
ImportError: No module named const
2013-03-08 13:29:35 [3670] [INFO] Worker exiting (pid: 3670)
2013-03-08 13:29:36 [3665] [INFO] Shutting down: Master
2013-03-08 13:29:36 [3665] [INFO] Reason: Worker failed to boot.
'const'模块位于/ usr / local / lib / project ...
答案 0 :(得分:9)
我没有看到您在超级用户配置文件中设置环境:
[program:gunicorn]
environment=PYTHONPATH=/usr/local/bin:/usr/local/lib/project
command=/usr/local/bin/gunicorn my_app:app -c /path/to/.gu_setup
...
如果这不起作用,请尝试在调试模式下启动gunicorn:
command=/usr/local/bin/gunicorn --debug --log-level debug my_app:app -c /path/to/.gu_setup
或直接将路径传递给gunicorn:
command=/usr/local/bin/gunicorn --pythonpath /usr/local/bin,/usr/local/lib/project my_app:app -c /path/to/.gu_setup
编辑: gunicorn的--pythonpath
已损坏,您只能传递一个目录:
command=/usr/local/bin/gunicorn --pythonpath /usr/local/lib/project my_app:app -c /path/to/.gu_setup
答案 1 :(得分:3)
没有必要传递--pythonpath。如果你工作virtuanenv你添加在哪里是gunicorn。例如:
command=/home/virtualenv/bin/gunicorn application:app -c /home/virtualenv/deploy/gunicorn.conf.py
目录是Flask代码的时候,例如:
directory=/home/virtualenv/myapp
记住用户是root!
user=root