macでApacheよりDjangoを動かすための各種設定を行い、httpd.confに設定したServerNameにブラウザよりアクセスすると、「Internal Server Error」のエラーとなります。原因がわかりません。
error_logには次のように吐かれています。
[Sat Mar 20 21:48:32.369379 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] mod_wsgi (pid=38911): Failed to exec Python script file '/Users/fuku/proj/study/django/quick_django/quick_django/wsgi.py'. [Sat Mar 20 21:48:32.369890 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] mod_wsgi (pid=38911): Exception occurred processing WSGI script '/Users/fuku/proj/study/django/quick_django/quick_django/wsgi.py'. [Sat Mar 20 21:48:32.434738 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] Traceback (most recent call last): [Sat Mar 20 21:48:32.434805 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] File "/Users/fuku/proj/study/django/quick_django/quick_django/wsgi.py", line 13, in <module> [Sat Mar 20 21:48:32.434823 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] from django.core.wsgi import get_wsgi_application [Sat Mar 20 21:48:32.434880 2021] [wsgi:error] [pid 38911] [client 127.0.0.1:52895] ModuleNotFoundError: No module named 'django'
一番下に「No module named 'django'」と吐かれていますが、Tracebackで吐かれているインポート対象のパッケージdjango.core.wsgi
とモジュールget_wsgi_application
が存在することは確認済みです。
httpd.conf または wsgi.pyのPATH設定ミスのような気がしますが、よく分かりません。
考えられる解決策がありましたら教えてください。
以下に、実行環境、httpd.conf、ログに吐かれているwsgi.pyの内容を載せておきます。
◆実行環境
Mojave 10.14.6
Python 3.9.2
Django 3.1.7
Apache 2.4.46
mod-wsgi-httpd-2.4.46.1
mod-wsgi-4.7.1
◆httpd.conf
デフォルトから以下のように変更しています。
WSGIPythonPath /Users/fuku/proj/study/django
のように変更して試したりもしましたが、症状は変わりませんでした。
httpd.conf
1(中略) 2ServerName 127.0.0.1:8080 3(中略) 4LoadModule wsgi_module /Users/fuku/proj/study/django/lib/python3.9/site-packages/mod_wsgi/server/mod_wsgi-py39.cpython-39-darwin.so 5WSGIScriptAlias / /Users/fuku/proj/study/django/quick_django/quick_django/wsgi.py 6WSGIPythonPath /Users/fuku/proj/study/django/quick_django 7<Directory /Users/fuku/proj/study/django/quick_django> 8<Files wsgi.py> 9Require all granted 10</Files> 11</Directory>
◆wsgi.py
/Users/fuku/proj/study/django/quick_django/quick_django/wsgi.pyの内容は以下です。
コメントでaddと付している行は、デフォルトから追加したものになります。
python
1import os 2import sys # add 3 4sys.path.append('/User/fuku/proj/study/django') # add 5from django.core.wsgi import get_wsgi_application 6os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'quick_django.settings') 7application = get_wsgi_application()
【追記】
問題の原因と関係あるか分かりませんが、httpd.confにWSGIPythonHome /usr/local/bin/python3.9
を追加したところ、以下のエラーログが吐かれました。
Current thread 0x00000001132ad5c0 (most recent call first): <no Python frame> [Sun Mar 21 09:39:56.751669 2021] [wsgi:warn] [pid 79098] mod_wsgi (pid=79098): Python home /usr/local/bin/python3.9 is not a directory. Python interpreter may not be able to be initialized correctly. Verify the supplied path. Python path configuration: PYTHONHOME = '/usr/local/bin/python3.9' PYTHONPATH = (not set) program name = 'python3' isolated = 0 environment = 1 user site = 1 import site = 1 sys._base_executable = '/usr/local/opt/httpd/bin/httpd' sys.base_prefix = '/usr/local/bin/python3.9' sys.base_exec_prefix = '/usr/local/bin/python3.9' sys.platlibdir = 'lib' sys.executable = '/usr/local/opt/httpd/bin/httpd' sys.prefix = '/usr/local/bin/python3.9' sys.exec_prefix = '/usr/local/bin/python3.9' sys.path = [ '/usr/local/bin/python3.9/lib/python39.zip', '/usr/local/bin/python3.9/lib/python3.9', '/usr/local/bin/python3.9/lib/python3.9/lib-dynload', ] Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding Python runtime state: core initialized ModuleNotFoundError: No module named 'encodings'
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。