我刚刚在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命令行!

为什么会这样?


当前回答

停止MySQL服务器

sudo /usr/local/mysql/support-files / mysql。服务器停止

以安全模式启动MySQL

Sudo /usr/local/mysql/bin/mysqld_safe——skip-grant-tables &

修改root用户密码

/usr/local/mysql/bin/mysql -u root

use mysql;
UPDATE user SET authentication_string=PASSWORD('NEW_PASSWORD') WHERE user='root';
FLUSH PRIVILEGES;
exit

测试

执行/usr/local/mysql/bin/mysql -u root命令

现在输入新密码开始使用MySQL。

其他回答

在终端中,写入mysql -u root -p并点击Return。

输入您必须记下的当前MySQL密码。

并设置密码:

SET PASSWORD = PASSWORD('new_password');

更多细节请参考这里的文档。

当我安装OS X v10.10 (Yosemite)时,MySQL出现了一个问题。我试了很多方法,但都没用。其实我找到了一个很简单的方法。试试这个。

首先以超级用户(su)权限登录到终端。 sudo苏 停止MySQL sudo /usr/local/mysql/support-files / mysql。服务器停止 安全模式启动: Sudo mysqld_safe——skip-grant-tables 打开另一台终端,以su权限登录,然后无需密码登录MySQL客户端(MySQL) Mysql -u root 修改密码 更新mysql。SET Password ('new_password') WHERE user ='root'; 冲洗的特权 冲洗特权; 现在你完成了。

点击这里阅读更多。

截至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 >启动服务器

MySQL 8有了很大的变化。我发现MySQL 8.0“如何重置根密码”文档的以下修改适用于Mac OS X。

创建一个临时文件$HOME/mysql.root.txt,用SQL更新根密码:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '<new-password>';

这使用mysql_native_password来避免身份验证插件'caching_sha2_password'无法加载错误,如果我省略该选项,我就会得到这个错误。

停止服务器,使用——init-file选项来设置根密码,然后重新启动服务器:

mysql.server stop
mysql.server start --init-file=$HOME/mysql.root.txt
mysql.server stop
mysql.server start

MySQL 8

关闭MySQL服务器

进入系统首选项-> MySQL 单击停止MySQL服务器按钮

打开两个终端[命令行]窗口 在第一个终端窗口中运行以下命令:

mysqld_safe --skip-grant-tables

在第二个终端窗口中执行以下操作:

4.1. 登录MySQL

mysql -u root

4.2. 在MySQL提示符中执行如下命令:

FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'NEWPASSWORD';

4.3. 退出MySQL

exit;

回到第一个终端窗口并关闭mysqld_safe

5.1. 按CTRL + Z

5.2. 运行以下命令

mysqladmin -u root -p shutdown

5.3. 输入在4.2中设置的新密码。当提示。

启动MySQL服务器[见1.]