解决navicat连接数据库时出现1251-Client does not support authentication protocol requested by server;

Navicat连接mysql-8.0.17-winx64版本时出现1251-Client does not support authentication protocol requested by server解决如下:
解决navicat连接数据库时出现1251-Client does not support authentication protocol requested by server;
1:use mysql;
2:alter user ‘root’ @‘localhost’ identified with mysql_native_password by ‘password’;
3:flush privileges;
按照以上步骤即可解决该问题

相关文章:

  • 2021-07-19
  • 2021-08-04
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2021-08-20
猜你喜欢
  • 2022-12-23
  • 2021-11-03
  • 2021-11-15
  • 2022-01-19
  • 2021-06-12
相关资源
相似解决方案