私は、modwsgiを使用してApacheの下にCherryPy「サイト」を設定しています。正常に動作し、HelloWorldメッセージを問題なく返すことができます。問題は、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)
これらのほとんどは、modwsgiのセットアップ時にCherryPyサイトからコピーされたもので、さまざまなインターネットソースから集めたデータベースのものを追加しただけです。
ルートページを表示しようとすると、500内部サーバーエラーが発生します。ログインページには問題なくアクセスできますが、データベース接続がどういうわけか混乱していると確信しています。