Ich verwende PHPmysqli_connect
, um mich bei der MySQL-Datenbank anzumelden (alles auf localhost)
Dies ist die mysql.user-Tabelle:
MySQL-Server-INI-Datei:
[mysqld] # The default authentication plugin to be used when connecting to the server default_authentication_plugin=caching_sha2_password #default_authentication_plugin=mysql_native_password
Mitcaching_sha2_password
in der MySQL-Server-INI-Datei ist es nicht möglich, sich mit Benutzer1 oder Benutzer2 anzumelden;
Fehler: mysqli_connect(): Vom Server angeforderter Client [caching_sha2_password] Unbekannte Authentifizierungsmethode...Mit
in der MySQL-Server-INI-Datei können Sie sich mit Benutzer1 anmelden, aber der gleiche Fehler tritt mit Benutzer2 auf;mysql_native_password
我通过 SQL 命令解决了这个问题:
由https://dev.mysql 引用。 com/doc/refman/8.0/en/alter-user.html
如果您正在创建新用户
由https://dev.mysql 引用。 com/doc/refman/8.0/en/create-user.html
这对我有用
从 PHP 7.4 开始,这不再是问题。 mysqlnd 添加了对
caching_sha2
身份验证方法的支持。目前,PHP mysqli 扩展不支持新的 caching_sha2 身份验证功能。 您必须等到他们发布更新。
查看 MySQL 开发人员的相关帖子:https: //mysqlserverteam.com/upgrading-to-mysql-8-0-default-authentication-plugin-considerations/
他们没有提到 PDO,也许你应该尝试使用 PDO 连接。