apache 在诗歌虚拟环境中安装mod-wsgi

pcrecxhr  于 2023-04-07  发布在  Apache
关注(0)|答案(1)|浏览(119)

我有一个Django应用程序。
我创建了一个诗歌虚拟环境来管理依赖关系。
这个应用程序运行在Python 3.10上。
我的pyproject.toml看起来像这样:

[tool.poetry]
name = "django_manager"
version = "0.1.0"
description = "A Game manager"
authors = [""]

[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.1.7"
beautifulsoup4 = "^4.12.0"
requests = "^2.28.2"
pillow = "^9.4.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

现在我试图将应用程序移动到CentOS虚拟机,我将整个项目文件夹复制到/var/www/html/GameManager,并在其中运行poetry install然后poetry shell
现在,如果我执行python -V,我会得到Python 3.10.4,所以这方面工作正常。
如果我尝试用apache来提供应用程序:
/etc/httpd/conf.d/gamemanager.com.conf

<VirtualHost *:80>
  ServerName gamemanager.com
  ServerAlias *.gamemanager.com

  Redirect permanent / https://gamemanager.com/
</VirtualHost>

<VirtualHost *:443>
  ServerName gamemanager.com
  ServerAlias *.gamemanager.com

  <Directory /var/www/html/GameManager>
    <Files wsgi.py>
      Require all granted
    </Files>
  </Directory>

  WSGIDaemonProcess gamemanager.com display-name=gamemanager user=user group=user_group processes=2 threads=15
  WSGIScriptAlias / /var/www/html/GameManager/app/wsgi.py
  WSGIProcessGroup gamemanager.com

  TimeOut 3600
  LogLevel info
  ErrorLog "/var/log/httpd/gamemanager.com-error.log"
  CustomLog "/var/log/httpd/gamemanager.com-access.log" common
</VirtualHost>

我在gamemanager.com-error.log中看到一个执行www.example.com的expceptionwsgi.py,可能是因为它试图使用/home/user/.local/lib/python3.6/site-packages/django/conf/__init__.py
所以现在我正试图通过在venv中安装mod-wsgi来修复这个问题,使用python3.10和pip3.10。
但我得到了一堆错误:

/usr/bin/ld: /usr/local/lib/libpython3.10.a(pegen.o): relocation R_X86_64_32 against symbol `_Py_NoneStruct' can not be used when making a shared object; recompile con -fPIC
      /usr/bin/ld: /usr/local/lib/libpython3.10.a(parser.o): relocation R_X86_64_32 against `.text' can not be used when making a shared object; recompile con -fPIC
      /usr/bin/ld: /usr/local/lib/libpython3.10.a(string_parser.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile con -fPIC
      /usr/bin/ld: /usr/local/lib/libpython3.10.a(myreadline.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile con -fPIC
      /usr/bin/ld: falló el enlace final: Sección no representable en la salida
      collect2: error: ld devolvió el estado de salida 1
      error: command '/usr/local/bin/gcc' failed with exit code 1
      [end of output]

我读过用--enable-shared构建python(不确定是否可能,因为它是由poetry安装的)或需要LD_RUN_PATH环境变量,但我不知道该值是什么,/usr/local/lib/python3.10/???

qjp7pelc

qjp7pelc1#

如果Apache mod_wsgi拒绝使用虚拟环境,您可以尝试gunicornuwsgi。两者都可以提供HTTP服务。您可以使用Apache与mod_proxy一起转发请求,也可以考虑直接暴露uwsgi或gunicorn。您也可以通过uwsgi协议mod_uwsgi与Apache交谈。Nginx supports uwsgi也是如此。
看起来Apache不知道Poetry或虚拟环境。我会尝试将您的wsgi.py Package 在一个shell脚本中,该脚本使用Poetry来启动wsgi.py。这样Apache就可以使用 Package 器脚本,这将强制它使用正确的Python版本。
脚本应该如下所示:

#!/bin/sh
exec poetry run python wsgi.py

然后Apache配置应该用途:

WSGIScriptAlias / /var/www/html/GameManager/app/my-script-that-calls-poetry-run-python-wsgi-py.sh

相关问题