首页 > 学院 > 开发设计 > 正文

Ubuntu 14.04下Django项目链接MySQL数据库

2019-11-08 20:54:11
字体:
来源:转载
供稿:网友

在成功安装MySQL-python-1.2.5后,开始配置django的mysql连接配置。 打开django项目的二级目录/Hello/Hello/setting.py文件。 默认情况下Django数据为sqlite:

# Database# https://docs.djangoPRoject.com/en/dev/ref/settings/#databasesDATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), }}

现在我们将它修改为mysql数据库

# Database# https://docs.djangoproject.com/en/dev/ref/settings/#databasesDATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'mysite', #数据库名称 'USER': 'root', #数据库的用户名 'PASSWord': '123', #数据库对应用户的密码 'HOST': '127.0.0.1', #数据库主机 'PORT': '3306', #数据库默认端口号 }}

执行数据库同步脚本:

python mange.py syncdb

上面脚本可能在Django高版本执行报错,1.7及以上可以使用下边:

python manage.py makemigrationspython manage.py migrate

执行结果

im@58user:~/PythonProjects/Hello$ python manage.py migrateSystem check identified some issues:Operations to perform: Apply all migrations: admin, auth, contenttypes, sessionsRunning migrations: Applying contenttypes.0001_initial... OK Applying auth.0001_initial... OK Applying admin.0001_initial... OK Applying admin.0002_logentry_remove_auto_add... OK Applying contenttypes.0002_remove_content_type_name... OK Applying auth.0002_alter_permission_name_max_length... OK Applying auth.0003_alter_user_email_max_length... OK Applying auth.0004_alter_user_username_opts... OK Applying auth.0005_alter_user_last_login_null... OK Applying auth.0006_require_contenttypes_0002... OK Applying auth.0007_alter_validators_add_error_messages... OK Applying auth.0008_alter_user_username_max_length... OK Applying sessions.0001_initial... OK
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表