Apache2、modwsgi、Python3.6 和 Bottle 集成的问题,在 Apache2 日志中未找到模块错误
Posted
技术标签:
【中文标题】Apache2、modwsgi、Python3.6 和 Bottle 集成的问题,在 Apache2 日志中未找到模块错误【英文标题】:issues with Apache2, modwsgi, Python3.6 and Bottle integration , Seeing Module not found error in Apache2 logs 【发布时间】:2021-09-01 18:09:13 【问题描述】:概述: 我正在尝试有一个简单的 Python 瓶应用程序可用作聊天机器人的后端,该聊天机器人在调用时会发送回 json 响应。 经过一番研究,我选择了 Apache2 + mod WSGI(4.8.0) 和 Python3.6 的解决方案。
问题: 通过浏览器访问 python 应用程序时,出现 500 内部服务器错误。 以下是 Apache2 日志中未找到模块的错误
Apache2 日志中的错误:
[2021 年 6 月 16 日星期三 17:38:56.152523] [wsgi:error] [pid 8878:tid 140503309027072] [remote 10.137.190.184:51146] mod_wsgi (pid=8878): 无法执行 Python 脚本文件'/opt/software/apache/httpd-webserver/httpd/wsgi-scripts/myapp.wsgi'。 [2021 年 6 月 16 日星期三 17:38:56.153460] [wsgi:error] [pid 8878:tid 140503309027072] [远程 10.137.190.184:51146] mod_wsgi (pid=8878): 处理 WSGI 脚本'/opt/software/apache /httpd-webserver/httpd/wsgi-scripts/myapp.wsgi'。 [2021 年 6 月 16 日星期三 17:38:56.154245] [wsgi:error] [pid 8878:tid 140503309027072] [远程 10.137.190.184:51146] 回溯(最近一次通话最后): [2021 年 6 月 16 日星期三 17:38:56.155012] [wsgi:error] [pid 8878:tid 140503309027072] [远程 10.137.190.184:51146] 文件“/opt/software/apache/httpd-webserver/httpd/wsgi-scripts/ myapp.wsgi”,第 6 行,在 [2021 年 6 月 16 日星期三 17:38:56.155605] [wsgi:error] [pid 8878:tid 140503309027072] [远程 10.137.190.184:51146] 进口瓶 [2021 年 6 月 16 日星期三 17:38:56.156093] [wsgi:error] [pid 8878:tid 140503309027072] [远程 10.137.190.184:51146] ModuleNotFoundError: 没有名为“bottle”的模块
当前 Apache、modWSGI 和 Python 系统设置: Apache 版本:2.4.41 Mod WSGi 版本: 4.8.0 Python版本:系统有2个版本,python2.7和python3.6
我打算使用python3.6,所以用python3编译modwsgi如下。我有另一个具有类似配置的沙箱,并且没有明确提到下面的 python3.6,这使得 WSGI 针对 python2.7 进行编译,并且我的瓶子 python 脚本在那里工作正常。
sudo ./configure --with-apxs=/opt/software/apache/httpd-webserver/httpd/bin/apxs --with-python=/usr/bin/python3.6
wsgi相关的httpd.conf设置:(使用WSGIDAEMON模式)
WSGIDaemonProcess wsgi-scripts user=webadm group=webgrp processes=1 threads=5
WSGIProcessGroup wsgi-scripts
WSGIScriptAlias /myapp "/opt/software/apache/httpd-webserver/httpd/wsgi-scripts/myapp.wsgi"
<Directory /opt/software/apache/httpd-webserver/httpd/wsgi-scripts>
<IfVersion < 2.4>
WSGIProcessGroup wsgi-scripts
WSGIApplicationGroup %GLOBAL
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
WSGIProcessGroup wsgi-scripts
WSGIApplicationGroup %GLOBAL
Require all granted
</IfVersion>
</Directory>
Apache2 日志显示 Apache 能够加载所需版本的 python 和 modwsgi
[2021 年 6 月 16 日星期三 17:57:51.974604] [mpm_worker:notice] [pid 10040:tid 140640770721664] AH00292: Apache/2.4.41 (Unix) OpenSSL/1.0.2k-fips mod_wsgi/4.8。 0 Python/3.6 已配置 -- 恢复正常操作
但是,当通过 UI 访问脚本时,我在 apache 日志中看到上述 bottle module not found 错误。 Bottle模块在系统上2.7和3.6版本的python都有。
另外,通过运行下面的测试 WSGI 脚本来确认 Apache 正在使用 python3.6 进行验证
#!/bin/python3
import sys
def application(environ, start_response):
status = '200 OK'
output = u''
output += u'sys.version = %s\n' % repr(sys.version)
output += u'sys.prefix = %s\n' % repr(sys.prefix)
output += u'sys.path = %s' % repr(sys.path)
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output.encode('UTF-8')]
测试 WSGI 脚本的输出: sys.version = '3.6.8 sys.prefix = '/usr' sys.path = ['/usr/lib64/python36.zip', '/usr/lib64/python3.6', '/usr/lib64/python3.6/lib-dynload', '/usr/local/lib64/ python3.6/site-packages'、'/usr/local/lib/python3.6/site-packages'、'/usr/lib64/python3.6/site-packages'、'/usr/lib/python3.6 /site-packages']
看起来 Apache/python 无法在运行时加载所需的模块,但无法弄清楚如何使 python/apache 找到所需的模块。我浏览了几个帖子并尝试了一些没有成功的事情。任何帮助将不胜感激。谢谢!
下面是我的瓶子和 wsgi 代码: hello.py:
#!/bin/python3
from bottle import route, run, template,error
import json
headers =
'Accept': 'application/json',
environment = 'qa'
def verification(user):
user = "profile of user " + user + " for environment " + environment + " looks good"
ops=['fname':'john','lastname':'Doe','Remark':'updated']
return json.dumps(ops)
@route('/troubleshoot/<user>')
def troubleshoot(user):
return verification(user)
ops=['fname':'harsha','lastname':'sri','Remark':'updated']
@error(404)
def error404(error):
return '404, Please use the right context /troubleshoot/<user>'
myapp.wsgi:
#!/bin/python3
import sys
sys.path.insert(0, "/opt/software/apache/httpd-webserver/httpd/wsgi-scripts")
import bottle
import hello
application = bottle.default_app()
【问题讨论】:
【参考方案1】:我注意到的第一件事是您需要将您的页面添加到bottle.app()
但是我不确定 .wsgi 文件是否应该在 Python 中?
你好.py:
helloRoute = Bottle()
myapp.wsgi:
from hello import helloRoute
application.merge(helloRoute)
【讨论】:
以上是关于Apache2、modwsgi、Python3.6 和 Bottle 集成的问题,在 Apache2 日志中未找到模块错误的主要内容,如果未能解决你的问题,请参考以下文章
apache2 + mod_wsgi 的soaplib(lxml)问题
使用 Python 3.6、Apache 2.4 和 Django 1.11 在 Ubuntu 上安装 mod_wsgi
Django2.2架构+ubuntu16(华为云)+python3.6架设“文学天地”个人网站
将 mod_wsgi 从 python3.5 更改为 3.6