加入收藏 | 设为首页 | 会员中心 | 我要投稿 衡阳站长网 (https://www.0734zz.cn/)- 数据集成、设备管理、备份、数据加密、智能搜索!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

MySQL 重设密码

发布时间:2022-06-30 23:46:58 所属栏目:MySql教程 来源:互联网
导读:系统版本: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 2 Server version: 5.7.28-log 忘记密码,编辑my.cnf服务配置文件 [mysqld]段段中加入 skip-grant-tables语句,去掉认证 update user set password=passw
  系统版本:
  Welcome to the MySQL monitor.  Commands end with ; or g.
  Your MySQL connection id is 2
  Server version: 5.7.28-log
 
  忘记密码,编辑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");
  该问题是由于密码授权过期导致。

(编辑:衡阳站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读