Centos

如何在 centos 8 VPS 的 apache 伺服器中啟用/載入 mod_wsgi

  • April 11, 2022

我無法在 cent os 8 VPS 的 apache 網路伺服器中啟用/載入模組 mod_wgsi。它通過執行命令在 ubuntu 中非常容易工作sudo apt install libapache2-mod-wsgi-py3請幫助我在 centos 8 中為 django 設置 apache,讓我知道如何為 apache 啟用 mod_wsgi。非常感謝您的幫助。

我最初執行的命令:

sudo yum update
sudo yum install python3-pip python3-devel httpd httpd-devel
pip3 install mod_wsgi

請檢查這個部落格 -

https://dataengee.blogspot.com/2022/04/django-server-setup-with-apache-with.html

它有基本的設置

首先,您需要清除您的 VPS 並重新安裝 CentOS 8,因為您已經執行pip3 install mod_wsgi並嘗試從中清理(如果可能的話)將比重新開始花費更長的時間。

接下來,您需要選擇是需要 Python 3.6 還是 Python 3.8。預設情況下將使用 Python 3.6,但您可以通過啟用其AppStream切換到 Python 3.8 :

dnf module enable python38

如果您選擇繼續使用 Python 3.6,請安裝該python3-mod_wsgi軟體包。如果您選擇使用 Python 3.8,請安裝該python38-mod_wsgi軟體包。

dnf install python38-mod_wsgi

引用自:https://serverfault.com/questions/1036214