美文网首页
MySQL5.7的跳过授权表登录

MySQL5.7的跳过授权表登录

作者: jsdjl | 来源:发表于2017-02-23 13:42 被阅读0次
  • 关闭MySQL数据库
service mysqld stop
  • 编辑my.cnf文件
[mysqld]
skip-grant-tables
  • 免密登陆
mysql -uroot -p
回车
  • 刷新系统权限相关表
mysql> flush PRIVILEGES;
  • 重新设置密码
 mysql> alter user 'root'@'localhost' identified by 'Abc@12345678';
flush tables; 
  • 去掉my.cnf文件中的skip-grant-tables配置,重启mysql的服务并登录。

相关文章

网友评论

      本文标题:MySQL5.7的跳过授权表登录

      本文链接:https://www.haomeiwen.com/subject/wafbwttx.html