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

问题描述 投票:0回答:1

我有一个 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 VM,我将整个项目文件夹复制到

/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
中看到一个执行 wsgi.py 的异常,可能是因为它正在尝试使用
/home/user/.local/lib/python3.6/site-packages/django/conf/__init__.py

所以现在我正在尝试通过使用 python3.10 和 pip3.10 在 venv 中安装 mod-wsgi 来解决这个问题。

但是我得到了一堆错误:

/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(不确定是否可能,因为它是由诗歌安装的)或需要
LD_RUN_PATH
环境变量,但我不知道该值是什么,
/usr/local/lib/python3.10/
???

python django apache mod-wsgi
1个回答
0
投票

Apache 似乎不了解 Poetry 或虚拟环境。我会尝试将您的

wsgi.py
包装在一个使用 Poetry 启动
wsgi.py
的 shell 脚本中。这样 Apache 就可以使用包装器脚本,这将强制它使用正确的 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
© www.soinside.com 2019 - 2024. All rights reserved.