python 3.8 flask apache 2.4 wsgi multiprocessing RuntimeError: fork not supported for subinterpreters
python 3.8 flask apache 2.4 wsgi multiprocessing RuntimeError: fork not supported for subinterpreters
我正在尝试 运行 Ubuntu 20.04 中的代码,使用 python 3.8、flask、wsgi 并使用多处理。我编写了一个与 python 一起工作的代码。这是代码:
from flask import Flask
from multiprocessing import Process, Manager
def f(d, l):
d[1] = '1'
d['2'] = 2
d[0.25] = None
l.reverse()
# Function to convert
def listToString(s):
# initialize an empty string
str1 = " "
res = str1.join(list(map(str,s)))
# return string
return res
app = Flask(__name__)
@app.route("/")
def hello():
with Manager() as manager:
d = manager.dict()
l = manager.list(range(10))
p = Process(target=f, args=(d, l))
p.start()
p.join()
print(d)
print(l)
return "Hello world! " + listToString(d)
if __name__ == "__main__":
app.run()
问题是当我尝试 运行 它使用带有 wsgi 模块的 apache 2.4 时。这是 .conf 和 .wsgi 文件:
<VirtualHost *:80>
# Add machine's IP address (use ifconfig command)
ServerName 192.168.0.7
#Application Configuration. SetEnv command
SetEnv wsgi.multithread True
SetEnv wsgi.multiprocess True
WSGIDaemonProcess testFlask processes=2 threads=15 python-path=/home/israel/server/study:/home/israel/server/env/lib/python3.8/site-packages
# Give an alias to to start your website url with
WSGIScriptAlias /testFlask /home/israel/server/study/my_flask_app.wsgi
WSGIProcessGroup testFlask
<Directory /home/israel/server/study/>
# set permissions as per apache2.conf file
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
Options FollowSymLinks
AllowOverride None
</Directory>
ErrorLog ${APACHE_LOG_DIR}/test-error.log
LogLevel info
CustomLog ${APACHE_LOG_DIR}/test-access.log combined
</VirtualHost>
和
#! /usr/bin/python3.8
python_home = '/home/israel/server/env'
activate_this = python_home + '/bin/activate_this.py'
print("activate dir", activate_this)
#python 3.8
exec(open(activate_this).read(), dict(__file__=activate_this))
import logging
import sys
#checking version
print('systems version {}.{}.{}'.format(sys.version_info[0], sys.version_info[1], sys.version_info[2]))
sys.path.insert(0, '/home/israel/server/study/')
from my_flask_app import app as application
application.secret_key = 'anything you wish'
我使用虚拟环境。通过 apache 和 wsgi,如果我删除多处理代码和行,代码工作正常:
#Application Configuration. SetEnv command
SetEnv wsgi.multithread True
SetEnv wsgi.multiprocess True
WSGIDaemonProcess testFlask processes=2 threads=15 python-path=/home/israel/Documents/Classlol/face_Glasses_Fitting_server-quis/study:/home/israel/Documents/Classlol/face_Glasses_Fitting_server-quis/env/lib/python3.8/site-packages
在 .wsgi 文件中。
当运行使用以前的代码时,我收到错误:RuntimeError: fork not supported for subinterpreters。我阅读了文档,但一无所获。我还检查了 python 3.8 的错误 bugzilla.redhat.com/show_bug.cgi?id=1745894,它似乎已经解决了......已经一个星期了,我一无所获..有什么想法吗?
来自 https://github.com/GrahamDumpleton/mod_wsgi/issues/614#issuecomment-691565686
Python 3.8 开始对 Python 子解释器的操作进行限制。 Python 子解释器会导致第三方 Python 模块出现各种其他问题,这些模块并非设计用于子解释器。出于这个原因,长期以来一直建议在使用 mod_wsgi.
时避免使用它们
为此,请确保您使用的是 mod_wsgi 守护进程模式,并且只有一个 WSGI 应用程序委托给任何 mod_wsgi 守护进程组。然后强制使用 WSGI 应用程序的主要 Python 解释器上下文。
您应该深入研究文档,但简而言之,使用如下内容:
在 VirtualHost 之外。此禁用嵌入式模式以确保您使用的是守护程序模式。
WSGIRestrictEmbedded 开启
VirtualHost 内部(假设您正在使用它们)。
WSGIDaemonProcess myapp
WSGIScriptAlias / /some/path/myapp.py process-group=myapp application-group=%{GLOBAL}
我正在尝试 运行 Ubuntu 20.04 中的代码,使用 python 3.8、flask、wsgi 并使用多处理。我编写了一个与 python 一起工作的代码。这是代码:
from flask import Flask
from multiprocessing import Process, Manager
def f(d, l):
d[1] = '1'
d['2'] = 2
d[0.25] = None
l.reverse()
# Function to convert
def listToString(s):
# initialize an empty string
str1 = " "
res = str1.join(list(map(str,s)))
# return string
return res
app = Flask(__name__)
@app.route("/")
def hello():
with Manager() as manager:
d = manager.dict()
l = manager.list(range(10))
p = Process(target=f, args=(d, l))
p.start()
p.join()
print(d)
print(l)
return "Hello world! " + listToString(d)
if __name__ == "__main__":
app.run()
问题是当我尝试 运行 它使用带有 wsgi 模块的 apache 2.4 时。这是 .conf 和 .wsgi 文件:
<VirtualHost *:80>
# Add machine's IP address (use ifconfig command)
ServerName 192.168.0.7
#Application Configuration. SetEnv command
SetEnv wsgi.multithread True
SetEnv wsgi.multiprocess True
WSGIDaemonProcess testFlask processes=2 threads=15 python-path=/home/israel/server/study:/home/israel/server/env/lib/python3.8/site-packages
# Give an alias to to start your website url with
WSGIScriptAlias /testFlask /home/israel/server/study/my_flask_app.wsgi
WSGIProcessGroup testFlask
<Directory /home/israel/server/study/>
# set permissions as per apache2.conf file
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
Options FollowSymLinks
AllowOverride None
</Directory>
ErrorLog ${APACHE_LOG_DIR}/test-error.log
LogLevel info
CustomLog ${APACHE_LOG_DIR}/test-access.log combined
</VirtualHost>
和
#! /usr/bin/python3.8
python_home = '/home/israel/server/env'
activate_this = python_home + '/bin/activate_this.py'
print("activate dir", activate_this)
#python 3.8
exec(open(activate_this).read(), dict(__file__=activate_this))
import logging
import sys
#checking version
print('systems version {}.{}.{}'.format(sys.version_info[0], sys.version_info[1], sys.version_info[2]))
sys.path.insert(0, '/home/israel/server/study/')
from my_flask_app import app as application
application.secret_key = 'anything you wish'
我使用虚拟环境。通过 apache 和 wsgi,如果我删除多处理代码和行,代码工作正常:
#Application Configuration. SetEnv command
SetEnv wsgi.multithread True
SetEnv wsgi.multiprocess True
WSGIDaemonProcess testFlask processes=2 threads=15 python-path=/home/israel/Documents/Classlol/face_Glasses_Fitting_server-quis/study:/home/israel/Documents/Classlol/face_Glasses_Fitting_server-quis/env/lib/python3.8/site-packages
在 .wsgi 文件中。
当运行使用以前的代码时,我收到错误:RuntimeError: fork not supported for subinterpreters。我阅读了文档,但一无所获。我还检查了 python 3.8 的错误 bugzilla.redhat.com/show_bug.cgi?id=1745894,它似乎已经解决了......已经一个星期了,我一无所获..有什么想法吗?
来自 https://github.com/GrahamDumpleton/mod_wsgi/issues/614#issuecomment-691565686
Python 3.8 开始对 Python 子解释器的操作进行限制。 Python 子解释器会导致第三方 Python 模块出现各种其他问题,这些模块并非设计用于子解释器。出于这个原因,长期以来一直建议在使用 mod_wsgi.
时避免使用它们为此,请确保您使用的是 mod_wsgi 守护进程模式,并且只有一个 WSGI 应用程序委托给任何 mod_wsgi 守护进程组。然后强制使用 WSGI 应用程序的主要 Python 解释器上下文。
您应该深入研究文档,但简而言之,使用如下内容:
在 VirtualHost 之外。此禁用嵌入式模式以确保您使用的是守护程序模式。
WSGIRestrictEmbedded 开启
VirtualHost 内部(假设您正在使用它们)。
WSGIDaemonProcess myapp WSGIScriptAlias / /some/path/myapp.py process-group=myapp application-group=%{GLOBAL}