📜  忘记了我的 mysql 密码 mac - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:23.754000             🧑  作者: Mango

代码示例2
Make sure you have Stopped MySQL first (above).
Run the server in safe mode with privilege bypass: sudo mysqld_safe --skip-grant-tables
mysql -u root
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
Then
mysql -u root
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';