-
编辑 MySQL 配置文件
/etc/my.cnf
-
在 [mysqld] 中增加一行,用来跳过授权表的验证
skip-grant-tables
-
重启 MySQL 服务。
-
直接使用
mysql -uroot -p
两次回车,不用输入密码就可以直接登录。登陆过后使用以下两行命令就可以修改密码了。use mysql;
update user set authentication_string=password('newPassword') where user='root';
或者
update mysql.user set password=password('新密码') where User="admin" and Host="localhost";
两个命令赋予的 Host 不同,更新密码的字段也不同。
-
刷新权限
flush privileges;
网友评论