MySQL中ROOT忘记密码解决

修改密码步骤

  1. 修改 /etc/my.cnf,root账号登录
末尾添加: skip-grant-tables=1
  1. 重启 mysqld 服务
systemctl restart mysqld
  1. 使用 root 修改密码
  mysql:mysql -u root 
  1. 切换到mysql数据库,更新 user 表:

说明:密码字段的字段名是 password,5.7版本改为了 authentication_string

UPDATE mysql.user SET authentication_string=password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';
  1. 删除 skip-grant-tables=1

  2. 重启 mysqld 服务,再用新密码登录即可

mysql安装初始化

MySQL 5.7 在初始安装后(CentOS7 操作系统)会生成随机初始密码,并在 /var/log/mysqld.log 中有记录,可以通过 cat 命令查看,找 password 关键字

找到密码后,在本机以初始密码登录,并且(也只能)通过 alter user ‘root’@’localhost’ identified by ‘root’ 命令,修改 root 用户的密码为 root,然后退出,重新以root用户和刚设置的密码进行登录即可。

    原文作者:蚂蚁窝大梦想
    原文地址: https://www.jianshu.com/p/af1f00ee59a2
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞