我已经通过 XAMPP 运行 MySQL,并且我还安装了 MySQLdb for python。但是,我想不出一种将我的 XAMPP 的 MySQL 用于 Python 的方法。每次我执行python manage.py runserver
它都会显示一个错误:
..2.4c1-py2.7-win32.egg.tmp\MySQLdb\connections.py", line 187, in __init__
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
我是 Python 新手,这些是settings.py
文件中的设置:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'tester', # Or path to database file if using sqlite3.
'USER': 'root', # Not used with sqlite3.
'PASSWORD': 'password', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
我正在使用Django
. 如果我使用 SQLite3 而不是 MySQL,它可以正常工作。但我想使用 MySQL。
编辑#1
MySQL 正在使用端口:3306
. 我如何让他们工作?