navicat 连接 mysql 出现Client does not support authentication protocol requested by server
出现Client does not support authentication protocol requested by server
以下自己网上找到的解决方案
alter user 'test'@'%' identified with mysql_native_password by '123';
test是用户名,%是指定任意链接,mysql_native_password是旧的密码验证机制,123是密码。
最后问题解决: