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

相關文章
相關標籤/搜索