码迷,mamicode.com
首页 > 数据库 > 详细

thinkphp3.2 连接Mysql5 报错 服务器向客户端发送未知的字符集。

时间:2018-11-15 10:23:56      阅读:484      评论:0      收藏:0      [点我收藏+]

标签:class   charset   数据库   think   stat   连接数   local   pass   版本   

今天早上上班的时候,突然发现昨天好好的项目,今天报错了,具体错误信息为: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

 

thinkphp3.2 连接Mysql5 报错 服务器向客户端发送未知的字符集。

标签:class   charset   数据库   think   stat   连接数   local   pass   版本   

原文地址:https://www.cnblogs.com/zhengdongdong/p/9961545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!