Mod_Wsgi PythonHome无法正常工作

时间:2014-05-05 11:20:57

标签: python django ubuntu mod-wsgi wsgi

所以我犯了运行Ubuntu Server(12.04)的错误。我安装了Python3和mod_wsgi的python3版本。

Apache2启动 - 但保留以下错误日志:

[Mon May 05 11:00:24 2014] [error] python_init: Python version mismatch, expected '2.7.2+', found '2.7.3'.
[Mon May 05 11:00:24 2014] [error] python_init: Python executable found '/usr/bin/python'.
[Mon May 05 11:00:24 2014] [error] python_init: Python path being used '/usr/lib/python2.7/:/usr/lib/python2.7/plat-linux2:/usr/lib/python2.7/lib-tk:/usr/$
[Mon May 05 11:00:24 2014] [notice] mod_python: Creating 8 session mutexes based on 80 max processes and 0 max threads.
[Mon May 05 11:00:24 2014] [notice] mod_python: using mutex_directory /tmp
[Mon May 05 11:00:24 2014] [warn] mod_wsgi: Compiled for Python/3.2.2+.
[Mon May 05 11:00:24 2014] [warn] mod_wsgi: Runtime using Python/2.7.3.
[Mon May 05 11:00:24 2014] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.11 with Suhosin-Patch mod_python/3.3.1 Python/2.7.3 mod_wsgi/3.3 configured$
[Mon May 05 11:00:25 2014] [notice] child pid 10860 exit signal Segmentation fault (11)
[Mon May 05 11:00:25 2014] [notice] child pid 10861 exit signal Segmentation fault (11)
[Mon May 05 11:00:25 2014] [notice] child pid 10863 exit signal Segmentation fault (11)
[Mon May 05 11:00:27 2014] [notice] child pid 10864 exit signal Segmentation fault (11)
[Mon May 05 11:00:27 2014] [notice] child pid 10865 exit signal Segmentation fault (11)

这是我的WSGI.conf

<IfModule mod_wsgi.c>

WSGIPythonHome /usr/bin/python3.2
WSGIPythonPath /home/user/.virtualenvs/my_env/lib/python3.2/site-packages/

</IfModule>

我没有从2小时的谷歌搜索中得到任何东西 - 所以我很想安装一个不同的服务器操作系统,但重新上传/重新解析比特币区块链至少需要一天。

1 个答案:

答案 0 :(得分:5)

WSGIPythonHome不会执行任何操作,因为您还将mod_python加载到Apache实例中。在这种情况下,mod_python会覆盖正在使用的Python版本。

这在WSGIPythonHome的文档中提到。

同时阅读:

此外,无论如何,WSGIPythonHome并不打算设置为Python可执行文件的路径。因此,即使您只使用mod_wsgi,也会被完全忽略。

因此,如果您不需要mod_python,请停止将其加载到Apache中。