Flaskフレームワークを使用してAzure Webアプリケーションをデプロイしようとしています。私はそれを展開するたびに、私はサーバー500エラーを取得します。しかし、私がコメントアウトすると、Azure Flask Webアプリケーションが動作しない
import pyodbc
となります。 pyodbcライブラリを使用する理由は、私のWebアプリケーションが正常に動作しないようにすることです。
また、この問題のトラブルシューティングに役立つエラーコードを見つけるためにデバッグするにはどうすればよいですか? はこれまでのところ、私は私のログファイルに以下を参照してください。
StdErr: 2017-08-18 23:12:02.085000: Unhandled exception in wfastcgi.py: Traceback (most recent call last): File "D:\Python27\Scripts\wfastcgi.py", line 711, in main env, handler = read_wsgi_handler(response.physical_path) File "D:\Python27\Scripts\wfastcgi.py", line 568, in read_wsgi_handler return env, get_wsgi_handler(handler_name) File "D:\Python27\Scripts\wfastcgi.py", line 541, in get_wsgi_handler handler = handler() File ".\ptvs_virtualenv_proxy.py", line 98, in get_virtualenv_handler handler = get_wsgi_handler(os.getenv('WSGI_ALT_VIRTUALENV_HANDLER')) File ".\ptvs_virtualenv_proxy.py", line 85, in get_wsgi_handler raise ValueError('"%s" could not be imported' % handler_name) ValueError: "rsit_tools.app" could not be imported 2017-08-18 23:12:02.100000: wfastcgi.py 2.1.1 closed 2017-08-18 23:19:53.953000: wfastcgi.py 2.1.1 started 2017-08-18 23:19:53.969000: Python version: 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] 2017-08-18 23:19:53.969000: wfastcgi.py 2.1.1 initializing 2017-08-18 23:19:54: Activating virtualenv with D:\home\site\wwwroot\env\Scripts\activate_this.py 2017-08-18 23:19:54.031000: Getting handler rsit_tools.app 2017-08-18 23:19:55.316000: Error occurred while reading WSGI handler:
Traceback (most recent call last): File "D:\Python27\Scripts\wfastcgi.py", line 711, in main env, handler = read_wsgi_handler(response.physical_path) File "D:\Python27\Scripts\wfastcgi.py", line 568, in read_wsgi_handler return env, get_wsgi_handler(handler_name) File "D:\Python27\Scripts\wfastcgi.py", line 541, in get_wsgi_handler handler = handler() File ".\ptvs_virtualenv_proxy.py", line 98, in get_virtualenv_handler handler = get_wsgi_handler(os.getenv('WSGI_ALT_VIRTUALENV_HANDLER')) File ".\ptvs_virtualenv_proxy.py", line 85, in get_wsgi_handler raise ValueError('"%s" could not be imported' % handler_name) ValueError: "rsit_tools.app" could not be imported
azureの仮想環境にpyodbcをインストールしましたか? – 2ps