[HY000] [2054] php连接mysql时错误
Posted 112226
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[HY000] [2054] php连接mysql时错误相关的知识,希望对你有一定的参考价值。
会出现这样的原因,主要都是因为mysql8.0版本的缘故,8.0版本默认编码为utf8mb4
解决方法:
MySQL配置文件my.ini中[mysqld]下加这两行
character-set-server = utf8mb4 collation-server = utf8mb4_unicode_ci
然后又出现了另一个问题:The server requested authentication method unknown to the client
也是由于mysql版本缘故,8.0版本mysql账号密码解锁机制不一致
在数据库操作界面输入命令
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘账户密码‘;即可
或者在MYSQL配置文件my.iniz中[mysqld]下加入
default_authentication_plugin=mysql_native_password
以上是关于[HY000] [2054] php连接mysql时错误的主要内容,如果未能解决你的问题,请参考以下文章
PHP错误:SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client
php artisan migrate - 错误 - Illuminate\Database\QueryException:SQLSTATE[HY000] [2054]
SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client
PHP + MYSQL + Laravel - “SQLSTATE [HY000] [2002] 连接被拒绝” [重复]