MySQL5.7忘记root密码如何重置

  1. 修改配置文件并重启:

    1
    [root@localhost ~]# vi /etc/my.cnf

    在[mysqld]添加一行

    1
    skip-grant-tables

    重启服务

    1
    [root@localhost ~]# systemctl restart mysqld
  2. 进入mysql修改root密码:

    1
    2
    [root@localhost ~]# mysql -uroot
    mysql> update mysql.user set authentication_string=password('newPassWord!123') where user='root' and host='localhost';

    * mysql5.7密码要求大小写字母数字特殊符号

  3. 退出mysql,重新修改/etc/my.cnf,删掉skip-grant-tables

  4. 重启服务

    1
    [root@localhost ~]# systemctl restart mysqld
  5. 使用新密码登录:

    1
    [root@localhost ~]# mysql -uroot -p

MySQL5.7忘记root密码如何重置
https://blog.supersource.top/mysql_5_7_reset_password/
作者
看热闹的咸鱼
发布于
2022年9月7日
许可协议