无法连接到"@localhost".@'localhost'(使用密码:YES).&



我尝试连接mysql到django项目这里是我的settings.py

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

}输入图片描述

看起来您的数据库中没有这样的用户。请在终端中使用该命令,同时在应用程序的主文件夹中:

python manage.py createsuperuser

最新更新