位置:海鸟网 > IT > mySQL >

mysql 忘记root密码

  停止mysql服务(以管理员身份,在cmd命令行下运行) net stop mysql或者在服务中停止mysql服务。

  使用 mysqld –skip-grant-tables 命令启动mysql数据库。

  新开一个cmd窗口,进行操作

  mysql -u root

  mysql> update mysql.user set password=password('新密码') where user='root';

  打开任务管理器,停止mysqld进程,使用net start mysql或者直接在服务中启动mysql,就可以使用root用户