1,在Linux,先进入/etc,修改my.cnf,任意一行加上"skip-grant-tables"。
2,重启MySQL:service mysqld restart
3,use mysql;
update mysql.user set authentication_string=password('your new password') where user='root';
4,flush privileges;
exit;
5,重启MySQL:service mysqld restart (这步可以省略)