MySQL ERROR 2059——Authentication plugin ‘caching_sha2_password‘ cannot be loaded

今天在使用MySQL的一个性能监控工具mycheckpoint过程中,遇到一个很奇怪的问题,报错如下:

(2059, “Authentication plugin ‘caching_sha2_password’ cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory”)

从字面意思来看,是说MySQL的客户端无法加载caching_sha2_password插件。这个问题有点奇怪,按理说客户端正常使用的呀,为什么不能加载这个插件呢?

文章目录

排查思路

针对这个问题,排查思路如下,

  1. 这个插件是什么?
  2. 我的MySQL版本是什么,难道和版本有关系?
  3. 这个插件是不是可以调整

上一篇:Linux的常用命令


下一篇:Python selenium 报错:Google Chrome cannot read and write to its data directory : selenium解决方法