php mysqli_connect:客户端未知的身份验证方法[caching_sha2_password]

问题描述 投票:31回答:6

我使用php mysqli_connect登录MySQL数据库(全部在localhost上)

<?php
//DEFINE ('DB_USER', 'user2');
//DEFINE ('DB_PASSWORD', 'pass2');
DEFINE ('DB_USER', 'user1');
DEFINE ('DB_PASSWORD', 'pass1');
DEFINE ('DB_HOST', '127.0.0.1');
DEFINE ('DB_NAME', 'dbname');

$dbc = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);

if(!$dbc){
    die('error connecting to database');    
}
?>

这是mysql.user表:mysql.user table

这个MySQL服务器文件:

[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

使用MySQL Server ini文件中的caching_sha2_password,根本无法使用user1或user2登录;

错误:mysqli_connect():服务器请求的客户端[caching_sha2_password]未知的身份验证方法...

使用MySQL Server ini文件中的mysql_native_password,可以使用user1登录,但是使用user2,同样的错误;


如何在mySql Server上使用caching_sha2_password登录?

php mysql hash sha
6个回答
22
投票

目前,php mysqli扩展不支持新的caching_sha2身份验证功能。您必须等到他们发布更新。

检查mysql开发人员的相关帖子:https://mysqlserverteam.com/upgrading-to-mysql-8-0-default-authentication-plugin-considerations/

他们没有提到PDO,也许你应该尝试与PDO联系。


108
投票

我通过SQL命令解决这个问题:

ALTER USER 'mysqlUsername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysqlUsernamePassword';

这是由https://dev.mysql.com/doc/refman/8.0/en/alter-user.html引用的

如果您正在创建新用户

 CREATE USER 'jeffrey'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

这是由https://dev.mysql.com/doc/refman/8.0/en/create-user.html引用的

这对我有用


12
投票
ALTER USER 'mysqlUsername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysqlUsernamePassword';

ALTER USER之后删除引号(')并在mysql_native_password BY之后保留引号(')

它也适合我。


8
投票

如果您使用的是Windows,并且根本无法使用caching_sha2_password,则可以执行以下操作:

  1. 重新运行MySQL安装程序
  2. 选择MySQL Server旁边的“重新配置”(顶部项目)
  3. 单击“下一步”,直到进入“身份验证方法”
  4. 将“使用强密码加密进行身份验证(推荐)”更改为“使用传统身份验证方法(保留MySQL 5.X兼容性)”
  5. 点击下一步”
  6. 在帐户和角色中输入您的Root帐户密码,然后单击“检查”
  7. 点击下一步”
  8. 继续单击“下一步”,直到进入“应用配置”
  9. 点击“执行”

安装程序将进行所需的所有配置更改。


2
投票

我在命令行中运行了以下命令ALTER USER 'root' @ 'localhost' identified with mysql_native_password BY 'root123';,最后在本地服务中重启MySQL。


1
投票

它对我有用(PHP 5.6 + PDO / MySQL Server 8.0 / Windows 7 64位)

编辑文件C:\ProgramData\MySQL\MySQL Server 8.0\my.ini

default_authentication_plugin=mysql_native_password

在Windows和MySQL Shell中重置MySQL服务......

ALTER USER my_user@'%' IDENTIFIED WITH mysql_native_password BY 'password';

0
投票

我在Ubuntu 18.04中试过这个,这是唯一对我有用的解决方案:

ALTER USER my_user@'%' IDENTIFIED WITH mysql_native_password BY 'password';
© www.soinside.com 2019 - 2024. All rights reserved.