在centos7.5上安装了php7.3,laravel5.7,mysql8.0,运行php artisan migrate的时候,出现如下错误: Illuminate\Database\QueryException : SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client (SQL: select * from information_schema.tables where table_schema = blog and table_name = migrations)百度到的解决办法:删除创建的用户和授权,变为原来的验证方式,然后从新创建用户并授权即可:找到mysql配置文件并加入:default_authentication_plugin=mysql_native_password或mysql -uroot -puse mysql;ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';问题:百度到的解决方式是退到以前的验证方式,如果要使用新的验证方式该怎么办呢?
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
应该是php连接数据库是默认用mysql_native_password的认证方式,在php代码里指定caching_sha2_password认证方式试试
添加回答
举报
0/150
提交
取消