[Mac OS] mysql忘記密碼
QQQQQ花點時間整理記取教訓
先進入安全模式
mysqld --skip-grant-tables
開新終端機(隨便打密碼進入)
mysql -u root -p
選擇系統資料庫
use mysql
修改密碼
(密碼欄位請自己select all找,我弄很久才發現我的密碼欄位不是password QQ)
update user set 密碼欄位=PASSWORD("your_password") where user="root"
(我的是authentication_string)
然後stop mysql再重啟就可以了QQQQ
參考資料:https://blog.csdn.net/shawyeok/article/details/41725619
先進入安全模式
mysqld --skip-grant-tables
開新終端機(隨便打密碼進入)
mysql -u root -p
選擇系統資料庫
use mysql
修改密碼
(密碼欄位請自己select all找,我弄很久才發現我的密碼欄位不是password QQ)
update user set 密碼欄位=PASSWORD("your_password") where user="root"
(我的是authentication_string)
然後stop mysql再重啟就可以了QQQQ
參考資料:https://blog.csdn.net/shawyeok/article/details/41725619
留言
張貼留言