mysql修改密码

  • 加密规则
    • mysql8之前的加密规则为 mysql_native_password, 之后的规则为caching_sha2_password
    • 修改加密规则和密码的方式
      ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码,password为自定义密码
      FLUSH PRIVILEGES; #刷新权限
  • 修改密码
    • mysql5.6 之前
      update mysql.user set Password=PASSWORD ('123456') where User='root';
    • mysql5.6之后
      update mysq.user set authentication_string=PASSWORD('123456') where User='root';

你可能感兴趣的:(mysql修改密码)