Mysql 忘记密码解决步骤

  1. 停止mysql服务:service mysqld stop

  2. 执行命令:mysqld_safe --skip-grant-tables & mysql -uroot -p 回车 安全模式进入

         > use mysql;
    
         > update user set password=PASSWORD("newpass")where user="root"; //修改密码
    
         > flush privileges; //刷新权限
    
         > quit //退出
    
  3. 重启mysql服务:service mysqld restart

  4. 链接数据库:mysql -uroot -p 新密码

你可能感兴趣的:(数据库)