尝试在Django中迁移mysql数据库时出现ConnectionDoesNotExist错误

时间:2018-12-25 03:52:13

标签: python mysql django database connection

这是我在django settings.py中的数据库代码:

DATABASES= {
    'defualt': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'cameronkc',
        'USER': 'root',
        'PASSWORD': '123456',
        'HOST': 'localhost',
        'PORT': ''
    }
}

这是在命令提示符下执行> python manage.py migration 时收到的错误消息

django.db.utils.ConnectionDoesNotExist: The connection default doesn't exist

1 个答案:

答案 0 :(得分:1)

您在DATABASES格中拼写了默认值。将'defualt'更改为'default'