我在请求中发出请求,以适应我的面向服务的设计。在本地,此代码有效。但是在使用ubuntu libapache2-mod-wsgi-py3进行生产时,我的嵌套请求失败了。
关键是两个服务都存在于服务器上的同一个<Virtualhost>
内,所以我怀疑这是一个线程问题。
在newitem()
内调用的第二个请求在我的WSGI Ubuntu框中失败并显示ConnectionRefusedError(111, 'Connection refused')
,即使API端点在我在此上下文之外POST时按预期运行(例如curl POST到确切的位置) URL)。
另一个重要的一点是,当我在不同的端口上运行两个独立的烧瓶应用时,请求设计中的请求在我的本地工作。在我使用--threaded
标志运行API服务器之前,我在本地遇到了这个问题。
我的服务器配置如下:
app2.wsgi:
#!env/bin/python3
import sys, os
sys.path.append('/var/www/api_app')
from app import create_app
from flask.ext.script import Manager
from flask.ext.migrate import Migrate, MigrateCommand
application = create_app(os.getenv('FLASK_CONFIG') or 'default')
if __name__ == "__main__":
manager.run()
的apache2 /位点可用/ default.conf :
<VirtualHost *:80>
DocumentRoot /var/www/html
# ------ WSGI config ------
WSGIDaemonProcess app1 user=www-data group=www-data threads=5
WSGIDaemonProcess app2 user=www-data group=www-data threads=5
WSGIScriptAlias /front_end /var/www/front_end/app2.wsgi
WSGIScriptAlias /api_app /var/www/api_app/app2.wsgi
WSGIScriptReloading On
<Directory /var/www/api_app>
WSGIProcessGroup app2
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
<Directory /var/www/front_end>
WSGIProcessGroup app1
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
当我使用--threaded标志启动API服务时,以下代码在我的本地环境中运行良好它在requests.post()行上的WSGI Apache2上失败。
@plant_material.route('/plant_material/new', methods=['GET', 'POST'])
def newitem():
form = PlantMaterialForm()
if form.validate_on_submit():
api_uri = current_app.config['API_SERVER_URI']
url = api_uri + "api/plant_material/new"
headers = {'Content-Type': 'application/json'}
print(request.form)
r = requests.post(url, data=json.dumps(request.form), headers=headers)
if r.status_code == 200:
return redirect(url_for('plant_material.index'))
elif r.status_code == 401:
flash('Whiteboard API Unauthorized')
elif r.status_code == 403:
flash('Whiteboard API Forbidden')
elif r.status_code == 500:
flash('Internal Server Error')
return render_template('plant_material/new.html', form=form)
如何在我的生产服务器上的请求中发出请求?
答案 0 :(得分:2)
Apache和mod_wsgi在这里处理并发问题;没有理由从一个WSGI应用程序到同一服务器上的另一个应用程序的格式良好的请求在此失败。
curl
从命令行测试相同的URL。current_app.config['API_SERVER_URI']
的实时值,而不是您认为的那样。curl
来电运行subprocess
,或使用urllib2
访问API