gpt4 book ai didi

mysql - Django 无法连接到 MySQL

转载 作者:行者123 更新时间:2023-11-29 09:55:48 26 4
gpt4 key购买 nike

花了几个小时找到正确的连接器来连接 MySQL 和 Django 后,我无法创建 super 用户。错误:

django.db.utils.OperationalError: (2059, "Authentication plugin 'caching_sha2_password' cannot be loaded: The specified module could not be found.\r\n")

我尝试设置环境变量,settings.configure(),它表示设置已配置。数据库信息已在 settings.py 中正确输入。

Pycharm 能够连接到数据库,这是在我的 django 项目中,并且 pycharm 中的数据库标题显示 Django default。我不知道这是否意味着我的 Django 项目已连接到它,但我只是无法创建 super 用户,或者 pycharm 连接不相关。

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

当我尝试django-admin dbshel​​l时,我收到此错误:

django.core.exceptions.ImproperlyConfigured: Requested setting DATABASES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.

错误中提供的两种解决方案都没有产生积极的结果。

我的最后一个问题被标记为重复,尽管解决方案不起作用,但问题在某些方面也有所不同..无论如何,下面是我尝试使用旧密码安全性时发生的情况。

重新迁移后,我让它可以使用旧身份验证。对于更新且更安全的 sha2 身份验证解决方案,我们将不胜感激。

最佳答案

更改您的 MySQL 用户密码

ALTER USER 'yourusername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourpassword';

然后将您的密码放入 Django 设置文件中。希望这能解决您的问题。

关于mysql - Django 无法连接到 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53896072/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com