MySQL 重置密码

系统版本:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.28-logmysql

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.sql

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.ide

忘记密码,编辑my.cnf服务配置文件
 [mysqld]段段中加入 skip-grant-tables语句,去掉认证
update user set password=password("root")where user='root';
修改密码以后,没法马上操做mysql,退出以后,从新链接mysql
执行语句报错:
You must reset your password using ALTER USER statement before executing this statement
解决方案
set password = password("root");
该问题是因为密码受权过时致使
this

相关文章
相关标签/搜索