【问题标题】:H10 Error in Flask App when deployed on heroku在 Heroku 上部署 Flask 应用程序时出现 H10 错误
【发布时间】:2020-10-21 20:49:04
【问题描述】:

我的应用在本地主机上运行良好,但是当我在 heroku 上部署烧瓶应用时出现以下错误

2020-07-01T09:56:02.982007+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=webscrappingapp.herokuapp.com request_id=59cec0a7-98a3-49d8-b980-779cada2c0d9 fwd="103.40.197.230" dyno= connect= service= status=503 bytes= protocol=https
2020-07-01T09:56:03.765421+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=webscrappingapp.herokuapp.com request_id=b2ddd2b8-5930-4049-993d-3c8e972b10ee fwd="103.40.197.230" dyno= connect= service= status=503 bytes= protocol=https

烧瓶文件, webscrap.py--

from flask import Flask, render_template

import requests
from bs4 import BeautifulSoup

from datetime import datetime
from pytz import timezone

#__name__ == __main__
app = Flask(__name__)
URL = 'https://techcrunch.com/'
page = requests.get(URL)  # type of page -- request

# type coverted to BeautifulSoup
# second argument how you want to structure your data
soup = BeautifulSoup(page.content, 'html.parser')

results = soup.find(class_='river river--homepage')

post_elems = results.select('.post-block')

table = [['Sr No', 'Time Stamp', 'News Title', 'Image Source URL', 'Author']]
i = 1

for post_elem in post_elems:
    header_elem = post_elem.find('header', class_='post-block__header')
    title_elem = header_elem.find('a', class_='post-block__title__link')
    timeStamp_elem = header_elem.find('time')['datetime']
    author_elem = header_elem.find('span')
    image_elem = post_elem.find('img')
    date = datetime.strptime(timeStamp_elem, "%Y-%m-%dT%H:%M:%S%z" )
    row = [i,  date.astimezone(timezone('Asia/Kolkata')).strftime("%I:%M %p" + " IST " + "%B %d, %Y"), title_elem.text.strip(),
           image_elem.get('src'), author_elem.text.strip()]
    table.append(row)
    i = i + 1

@app.route('/')
def index():
    return render_template("index.html", table=table)

if __name__ == '__main__':
    app.run(debug=True)

过程文件:

web : gunicorn webscrap:app

Requirements.txt:

autopep8==1.5.3
beautifulsoup4==4.9.1
certifi==2020.6.20
chardet==3.0.4
click==7.1.1
Flask==1.1.2
gunicorn==20.0.4
idna==2.10
itsdangerous==1.1.0
Jinja2==2.11.2
MarkupSafe==1.1.1
pycodestyle==2.6.0
pytz==2020.1
requests==2.24.0
soupsieve==2.0.1
toml==0.10.1
urllib3==1.25.9
Werkzeug==1.0.1

我尝试将 Procfile 内容替换为

web : gunicorn --bind 0.0.0.0:$PORT webscrap:app

但这对我不起作用。我也尝试用server 替换app,但没有奏效。所以,请提出这个问题的解决方案。

编辑: 我的错误是 Procfile 中的间距。正确的是--

web: gunicorn webscrap:app

但现在我收到 H14 错误,也尝试在 Procfile 中添加 heroku ps:scale web=1,但对我没有用。

【问题讨论】:

  • 我不确定这是否会使用gunicorn 执行,但在 Heroku 上,您无法在调试模式下运行 Flask。 app.run(debug=True)。应为False 或省略。您还可以在app.run(port=os.environ.get("PORT", 8080)) 那里指定一个端口(如果存在,将绑定到PORT,否则使用端口8080)也可以尝试在没有gunicorn 的情况下运行您的Flask 应用程序,并希望得到一些更有意义的错误消息。

标签: python flask heroku


【解决方案1】:

将 Procfile txt 更改为

web: uwsgi uwsgi.ini

创建新文件 uwsgi.ini 并添加此代码

[uwsgi]
http-socket = :$(PORT)
master = true
die-on-term = true
module = app:app
memory-report = true

在requirements.txt中添加uwsgi

...
urllib3==1.25.9
Werkzeug==1.0.1
uwsgi

添加 runtime.txt 并添加此文本

python-version

例如 python-3.7.4

【讨论】:

  • 不,我没有 runtime.txt 文件
  • 我还需要包含 .flaskenv 文件吗?
  • 不,不需要添加 .env 文件。如何将应用部署到 heroku
  • 好的,git add . --> git commit -m "message" --> heroku create webscrappingapp --> git push heroku master
  • 我也遇到了这个解决方案port = int(os.environ.get("PORT", 5000)) app.run(host='0.0.0.0', port=port, debug=True),这有帮助吗?
【解决方案2】:

我的项目结构

创建 Procfile - 在其中写入以下行 web: gunicorn main:app 其中“main”是提到 app = create_app() 的文件名

pip install gunicorn

pip freeze > requirements.txt

再创建一个名为runtime.txt 的文件,其中包含以下行 python-3.9.2 (提供您项目的相应 python 版本)

Heroku 部分:使用 gitbash 或 vscode 控制台一一运行以下命令

heroku login

git init

git add .

git commit -am "Initial Commit"

git push heroku main

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-12-06
    • 2021-11-27
    • 1970-01-01
    • 1970-01-01
    • 2017-07-07
    • 1970-01-01
    • 2019-06-12
    • 2021-03-25
    相关资源
    最近更新 更多