当前位置:  开发笔记 > 编程语言 > 正文

heroku中的H14错误 - "没有运行的Web进程"

如何解决《heroku中的H14错误-"没有运行的Web进程"》经验,为你挑选了1个好方法。

错误H14在部署到heroku时发生这是我的procfile:

web: gunicorn -w 4 -b 0.0.0.0:$PORT -k gevent main:app

登录heroku:

2017-01-23T10:42:58.904480+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=meetcapstone.herokuapp.com request_id=df88efb5-a81a-4ac0-86dc-4e03d71266bb fwd="81.218.117.137" dyno= connect= service= status=503 bytes=
2017-01-23T10:42:59.009135+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=meetcapstone.herokuapp.com request_id=21cea981-36b0-4410-891f-548bbc29f0ee fwd="81.218.117.137" dyno= connect= service= status=503 bytes=

要求:

Flask==0.11.1
passlib==1.7.0
SQLAlchemy==1.1.5
Werkzeug==0.11.15
gunicorn==19.0.0
gevent==1.2.1

rdegges.. 49

这里的问题是你没有运行任何网络动态.您可以通过以下方式告诉Heroku:

$ heroku ps:scale web=1

这将迫使Heroku旋转web dyno,从而执行你的gunicorn命令.



1> rdegges..:

这里的问题是你没有运行任何网络动态.您可以通过以下方式告诉Heroku:

$ heroku ps:scale web=1

这将迫使Heroku旋转web dyno,从而执行你的gunicorn命令.

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有