linux下忘记mysql root密码的解决方法
1、结束当前正在运行的mysql进程。
# service mysqld stop
# mysqld_safe --skip-grant-tables &
# mysql -u root
mysql> use mysql;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> update user set Password = PASSWORD('root') where User ='root';Query OK, 3 rows affected (0.00 sec)Rows matched: 3 Changed: 3 Warnings: 0mysql> flush privileges;mysql> quit;mysql> exit# service mysqld restart