修改遗失的 MySQL 的 ROOT 用户密码
日期:2007-08-12 荐:
如果忘记了 MySQL 的 root 密码,可以用以下方法重新设置:
1. KILL掉系统里的SQL/Index.html“〉MySQL进程;
2. 用以下命令启动SQL/Index.html“〉MySQL,以不检查权限的方式启动;
mysqld_safe -skip-grant-tables &
3. 然后用空密码方式使用root用户登录 SQL/Index.html“〉MySQL;
mysql -u root
4. 修改root用户的密码;
mysql〉update mysql.user set password=PASSWORD(’新密码’) where User=’root’;
mysql〉flush privileges;
mysql〉quit
5. 重新启动SQL/Index.html“〉MySQL,就可以使用新密码登录了。
标签: