1. 程式人生 > >django2.1連線MySQL出現的問題解決

django2.1連線MySQL出現的問題解決

報錯:

django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for
 more details.

最後找到的問題是:

DATABASES = {
    'default':{
        'ENGINE':'django.db.backends.mysql',
        'NAME':'user',
        'USER':'root',
        'PASSWORD':'root',
        'HOST':'47.97.217.36',
        'PORT':'3306',
    }
}

setting檔案中的這一段有地方寫錯了,仔細對比改正後,即可完成資料遷移