linux下忘记了mysql的root用户密码解决办法

时间:2022-09-17 09:26:32
一、以系统的root用户登陆系统,进入终端

  [root@localhost /]#

二、杀掉mysql进程

  方法1、[root@localhost /]#killall mysqld

  方法2、[root@localhost /]#ps -aux  //查看所有进程,找到mysql进程的pid

                [root@localhost /]#kill pid   //pid是mysql的进程号

三、用--skip-grant-tables参数启动mysqld

  [root@localhost /]#mysqld_safe --skip-grant-tables 

  [root@localhost /]#mysql

  mysql> use mysql   //切换到mysql database

  mysql> UPDATE user SET password=password('123456') WHERE user='root';

  mysql>quit

  //将root密码该为123456了