MySQL5.7的跳过授权表登录
2017-02-23 本文已影响0人
jsdjl
- 关闭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的服务并登录。