我在 Apache 下使用 modwsgi 建立了一个 CherryPy“站点”。它工作正常,我可以毫无问题地返回 hello world 消息。问题是当我尝试连接到我的 MySQL 数据库时。这是我正在使用的代码。
import sys
sys.stdout = sys.stderr
import atexit
import threading
import cherrypy
import MySQLdb
cherrypy.config.update({'environment': 'embedded'})
if cherrypy.__version__.startswith('3.0') and cherrypy.engine.state == 0:
cherrypy.engine.start(blocking=False)
atexit.register(cherrypy.engine.stop)
def initServer():
global db
db=MySQLdb.connect(host="localhost", user="root",passwd="pass",db="Penguin")
class Login(object):
def index(self):
return 'Login Page'
index.exposed = True
class Root(object):
login = Login();
def index(self):
# Sample page that displays the number of records in "table"
# Open a cursor, using the DB connection for the current thread
c=db.cursor()
c.execute('SELECT count(*) FROM Users')
result=cursor.fetchall()
cursor.close()
return 'Help' + result
index.exposed = True
application = cherrypy.Application(Root(), script_name=None, config=None)
其中大部分内容是从 CherryPy 网站上设置 modwsgi 时复制的,我只是添加了从各种互联网资源拼凑而成的数据库内容。
当我尝试查看根页面时,我收到 500 内部服务器错误。我仍然可以很好地进入登录页面,但我很确定我以某种方式弄乱了数据库连接。