在Mac上,可以通过以下步骤重置MySQL密码:
sudo /usr/local/mysql/support-files/mysql.server stop
sudo mysqld_safe --skip-grant-tables
mysql -u root
use mysql;
update user set authentication_string=password('新密码') where user='root';
将“新密码”替换为您想要设置的新密码。
flush privileges;
quit;
sudo /usr/local/mysql/support-files/mysql.server start
完成上述步骤后,您的MySQL密码应该已被重置为新密码。
上一篇:mysql如何将id重新排列
下一篇:如何查看mysql语句运行时间
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站