我刚刚在Mac OS x上安装了MySQL,下一步是设置root用户密码,所以我接下来这样做:

启动终端应用程序以访问Unix命令行。 在Unix提示符下,我执行了以下命令: cd /usr/local/mysql/bin ./mysqladmin -u root password' password'

但是,当我执行命令时

./mysql -u root,这是答案:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 224
Server version: 5.5.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

我不需要密码就能进入mysql命令行!

为什么会这样?


当前回答

这就是对我有效的方法:

Make sure no other MySQL process is running. To check this do the following: From the terminal, run this command: lsof -i:3306 If any PID is returned, kill it using kill -9 PID Go to System Preferences → MySQL → check if any MySQL instances are running, stop them. Start MySQL with the command: sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables The password for every user is stored in the mysql.user table under columns User and authentication_string respectively. We can update the table as: UPDATE mysql.user SET authentication_string='your_password' where User='root'

其他回答

在新的MySQL 5.7版本中,由于某些原因MySQL的二进制命令没有附加到shell中,你必须这样做:

安装完成后重新启动Mac。 MySQL开始: System Preferences→MySQL→Start按钮 进入终端的MySQL install文件夹: cd /usr/local/mysql/bin/ 访问MySQL: ./mysql -u root -p 并输入为安装提供的初始密码。 在MySQL客户端修改密码: mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPassword'

您可以手动关闭Mac上的MySQL,通过点击Apple菜单并打开系统首选项。选择“MySQL”首选项面板,然后点击“停止MySQL服务器”按钮停止Mac上的MySQL服务器。

停止MySQL后,需要执行以下步骤。

你需要在skip-grant-tables模式下启动MySQL sudo /usr/local/mysql/support-files / mysql。服务器启动——skip-grant-tables 在您的终端中,输入此命令以刷新现有权限 /usr/local/mysql/bin/mysql 现在需要修改用户密码 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'newpassword' mysql >退出

然后,您可以转到Apple菜单并打开系统首选项。选择“MySQL”首选项面板,然后点击“停止MySQL服务器”按钮来停止Mac上的MySQL服务器。

最后,您可以再次进入Apple菜单并打开系统首选项。选择“MySQL”首选项面板,然后单击“启动MySQL服务器”按钮启动Mac上的MySQL服务器。

点击这里阅读更多。

截至2022年12月,以下适用于macOS Big Sur 11.2.3上的MySQL 8.0.26:

去系统首选> mysql >停止服务器 打开终端并运行:mysqld_safe——skip-grant-tables 打开一个新终端,运行:mysql -u root 运行:ALTER USER 'root'@'localhost' IDENTIFIED BY 'root'; ROOT将是您的新密码。 运行:FLUSH特权; 运行:退出 进入系统首选项> mysql >启动服务器

macOS v10.14 (Mojave)及更高版本,从Mac OS X DMG安装程序安装5.7.26。

当尝试使用其他用户发布的UPDATE命令时,会导致以下错误:

错误1820 (HY000):在执行此语句之前,您必须使用ALTER USER语句重置密码。

复制安装程序提供给您的密码,打开终端,然后执行以下操作:

mysql -uroot -p
ALTER USER 'root'@'localhost' IDENTIFIED BY 'YOURPASSWORDHERE';
mysqld_safe --skip-grant-tables
mysql -u root
UPDATE mysql.user SET authentication_string='yourpasswd' WHERE User='root';
FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';

每次我的MacBook重启时,我都需要这样做。