关于php7.3.10连接mysql8出现The server requested authentication method unkown to the client

出现的问题:
新建帐户read,在phpadmin无法登录
但使用root用户可以正常登录

image.png

我的php也受到了影响

image.png

最后得出的结论是:
由于我的php7.3.10不支持caching_sha2_password
图中没有看到caching_sha2_password

image.png

而mysql8.0.17的密码验证方式是caching_sha2_password

image.png

所以,只能去修改配置文件了。。。C:\AppServ\MySQL\mysql.ini
添加default_authentication_plugin=mysql_native_password

image.png

然后重启mysql
image.png

最后修改read帐户的登录验证方式
ALTER USER 'read'@'%' identified with mysql_native_password BY '87654321';

image.png

正常登录!


image.png

总结:
后面需要新建帐户的时候,要加上mysql_native_password 来指定验证方式
create user 'root'@'localhost' identified with mysql_native_password by '12345678';

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容