今天早上上班的时候,突然发现昨天好好的项目,今天报错了,具体错误信息为:SQLSTATE[HY000] [2054] Server sent charset unknown to the client. Please, report to the developers
翻译成中文为服务器向客户端发送未知的字符集,向开发商报告,第一反应是数据库字符集不对,检查过后发现,字符集是正确的。经过思考,把连接数据库配置文件中的localhost改成127.0.0.1,
问题解决。
这个问题多发生在mysql8.0的版本上,下面是网上的一些解决办法:
ThinkPHP 3.2 连接MySQL 8时报如下错误:
SQLSTATE[HY000] [2054] Server sent charset unknown to the client. Please, report to the developers
网上查询得知MySQL 8 默认字符集为utf8mb4,给出的解决方法都是设置MySQL的默认字符集为老版本的utf8,然而其实只需要在MySQL配置文件中[mysqld]下加这两行
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
同时在TP配置文件中的数据库连接信息中指明字符集utf8即可
‘DB_CHARSET‘=> ‘utf8‘, // 字符集
如果又出现这样的报错:
QLSTATE[HY000] [2054] The server requested authentication method unknown to the client
是因为MySQL8中用户的认证类型(Authentication type)默认为cacheing sha2 password导致的错误,需要修改用户权限认证方式为5.x的认证方式
alter user ‘root‘@‘%‘ identified with mysql_native_password by ‘123456‘;
#刷新权限
flush privileges;
然后在MySQL配置文件中[mysqld]下加上
default_authentication_plugin=mysql_native_password
原文地址:https://www.cnblogs.com/zhengdongdong/p/9961545.html