关闭mysql服务
service mysql stop
打开mysql 配置文件my.cnf
vim /etc/my.cnf
在mysqld代码块中添加
skip-grant-tables
保存退出,重启Mysql
service mysql restart
使用命令进入mysql
mysql -u root -p
直接两次回车进入mysql命令模式
use mysql;
update user set password = password ( 'new password') where user = 'root';
退出mysql,编辑/etc/my.cnf删掉skip-grant-tables 重启mysql服务