You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
obsidian-sync/问题排查/mysql/mysql8 忘记密码处理步骤.md

466 B

  1. 停止当前mysqld服务 service mysql stop

  2. 用安全模式启动 sudo mysqld_safe --skip-grant-tables --user=mysql&

  3. 无密码登陆 mysql -u root

  4. 修改密码

FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED BY '密码';
# 修复因为密码插件导致的问题
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '密码';
EXIT;
  1. 恢复正常mysql服务
sudo pkill mysqld
service mysql start