macOS重置MySQL 8.0的root密码
程序员文章站
2022-06-30 14:25:43
...
- 打开终端,停止MySQL服务。
mysql.server stop
- 进入mysql所在目录(我的是/usr/local/bin),如果不确定在哪,可以用which mysql命令查找一下,然后输入如下命令:
cd /usr/local/bin
sudo mysqld_safe --skip-grant-tables
- 如果MySQL服务未自动启动,则手动启动。可以使用mysql.server status命令查看是否已经启动:
mysql.server start
- 新开一个终端窗口,使用root用户登录:
mysql -u root
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
- 重置密码:
mysql -u root
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'YourNewPasswd';