mac電腦用brew安裝mysql後如何找回密碼

donggan發表於2022-06-15

安裝的是mysql8.0.27
先找到 my.cnf, 在後面加上 skip-grant-tables
這樣就可以免密碼登入了
然後是

user mysql;
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;

再進到資料庫,

use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'abc789!@#';
exit;

然後進到my.cnf,去掉 skip-grant-tables
再就可以用密碼登入mysql了

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章