1. 忘记 MySQL 的 root 密码,可以用以下方法重新设置: 
  2.     1. KILL掉系统里的MySQL进程; 
  3.     2. 用以下命令启动MySQL,以不检查权限的方式启动; 
  4.     mysqld_safe --skip-grant-tables & 
  5.     3. 然后用空密码方式使用root用户登录 MySQL; 
  6.     mysql -u root 
  7.     4. 修改root用户的密码; 
  8.     mysql> update mysql.user set password=PASSWORD('123456') where User=root and host='localhost'; 
  9.    mysql> flush privileges; 
  10.    mysql> quit 
  11.     5. 重新启动MySQL,就可以使用新密码登录了。 
  12. mysql -u root -p123456