mysql8忘记密码解决方案

  1. 关闭 mysql 服务
  2. 运行 mysqld --console --skip-grant-tables --shared-memory
  3. 打开一个新的命令窗口
  4. 运行 mysql -uroot
  5. 运行 update mysql.user set authentication_string='' where user='root' and host='localhost'
  6. 开启mysql服务

密码已经被清空,如需设置新密码,执行 alter user user() identified by '此处输入要设置的新密码'

note: 以管理员身份运行

你可能感兴趣的:(mysql8忘记密码解决方案)