KBEngine框架知识系列:dbmgr模块报错,mysql_error=Authentication plugin caching_sha2_password

KBEngine框架知识系列:dbmgr模块报错,mysql_error=Authentication plugin caching_sha2_password_第1张图片

mysql8.0以上默认使用的caching_sha2_password加密方式,引擎这里使用的是mysql_native_password加密方式,需要修改下mysql的加密方式,如下:

    ALTER USER 'kbe'@'localhost' IDENTIFIED WITH mysql_native_password BY 'kbe';

    

    KBEngine框架知识系列:dbmgr模块报错,mysql_error=Authentication plugin caching_sha2_password_第2张图片

 

 

你可能感兴趣的:(mysql,mysql)