kbengine前期设置相关mysql8.0 'caching_sha2_password' cannot be loaded: 找不到指定的模块报错解决

TelnetServer server is running on port 32000 dbmgr-1: [ERROR] DBInterfaceMysql::attach: mysql_errno=2059, mysql_error=Authentication plugin ‘caching_sha2_password’ cannot be loaded: 找不到指定的模块。

就是…上面这个错,kbengine点运行后本来应该是自动跳出9个,我总是跳出来之后会自动消失一个,然后其他的也各种报错…去看log发现是没用自动生成那五个table,因为上面那个错。

这还是因为…mysql8.0改了认证加密方式。就是以前用的是:mysql_native_password 但是现在mysql8.0是caching_sha2_password。所以!怎么做呢:

  1. 把我们创建的mysql用户kbe删了!!!
  2. 关掉mysql server,进入my.ini 把[mysqld]下的
    default_authentication_plugin=mysql_native_password
    把default_authentication_plugin改成mysql_native_password
  3. 重启mysql server
  4. 重新create user kbe什么什么的,然后按照他说的grant各种privileges

这样我们新建的kbe就是用原来的mysql_native_password进行认证加密啦
我是这样改过之后就…正常开了kbengine~

参考:https://www.itency.com/topic/show.do?id=486709

你可能感兴趣的:(kbengine前期设置相关mysql8.0 'caching_sha2_password' cannot be loaded: 找不到指定的模块报错解决)