我使用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服务器文件:
[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 mysqli扩展不支持新的caching_sha2身份验证功能。您必须等到他们发布更新。
检查mysql开发人员的相关帖子:https://mysqlserverteam.com/upgrading-to-mysql-8-0-default-authentication-plugin-considerations/
他们没有提到PDO,也许你应该尝试与PDO联系。
我通过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引用的
这对我有用
ALTER USER 'mysqlUsername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysqlUsernamePassword';
在ALTER USER
之后删除引号(')并在mysql_native_password BY
之后保留引号(')
它也适合我。
如果您使用的是Windows,并且根本无法使用caching_sha2_password
,则可以执行以下操作:
安装程序将进行所需的所有配置更改。
我在命令行中运行了以下命令ALTER USER 'root' @ 'localhost' identified with mysql_native_password BY 'root123';
,最后在本地服务中重启MySQL。
它对我有用(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';
我在Ubuntu 18.04中试过这个,这是唯一对我有用的解决方案:
ALTER USER my_user@'%' IDENTIFIED WITH mysql_native_password BY 'password';