欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

macOS重置MySQL 8.0的root密码

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