一、navcat 连接不支持密码输入

  1. 先通过命令行进去mysql的root账户

    mysql -uroot -p'password'

  2. 更改加密方式

    alter user 'root'@'localhost' identified by 'password' password expire never;

  3. 更改密码

    alter user 'root'F@'localhost' identified with mysql_native_password by 'password';

  4. 刷新

    flush privileges;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-20
  • 2021-06-22
  • 2022-03-01
  • 2022-01-18
猜你喜欢
  • 2022-01-05
  • 2021-12-10
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案