检查日志
如果检查一下帐号密码没问题看一下日志:
Plugin mysql_native_password reported: ''mysql_native_password' is deprecated and will be removed in a future release. Please use caching_sha2_password instead'
很显然是mysql 采用的密码插件出了问题:你采用了mysql废弃的密码验证方式:Plugin mysql_native_password reported: ‘mysql_native_password’ is deprecated and will be removed in a future release. Please use caching_sha2_password instead
解决办法
这时候你可以通过SQL来更新认证模式和密码:文章来源:https://www.toymoban.com/news/detail-756282.html
update user set plugin = 'caching_sha2_password' where user = '用户名';
操作之前先选择mysql库
对于PHP来说,使用7.1(7.1.16之前的版本)或者7.2(7.2.4之前的版本),仍需要将MySQL服务器的默认密码插件设置为mysql_native_password,不然无法正常连接到MySQL。文章来源地址https://www.toymoban.com/news/detail-756282.html
到了这里,关于【8.0.34-0 ubuntu 安装Mysql 后无法链接是什么情况】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!