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

为什么会这样?


当前回答

如果你不记得密码,@radtek的答案对我来说是有效的,除了在我的情况下,我已经使用brew设置了MySQL,这意味着他的答案的第1步和第2步必须更改为:

/usr/local/bin/mysql.服务器停止 /usr/local/bin/mysqld_safe——skip-grant-tables

注意:缺少sudo。

其他回答

点击这里阅读更多。

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

停止mysqld服务器。

Mac OS X:系统首选项→MySQL→停止MySQL服务器 Linux(从终端):sudo systemctl停止mysqld.service

Start the server in safe mode with privilege bypass From Terminal: sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables In a new terminal window: sudo /usr/local/mysql/bin/mysql -u root This will open the MySQL command-line client. From here enter: UPDATE mysql.user SET authentication_string=PASSWORD('NewPassword') WHERE User='root'; FLUSH PRIVILEGES; quit Stop the mysqld server again and restart it in normal mode. Mac OS X (From Terminal): sudo /usr/local/mysql/support-files/mysql.server restart Linux Terminal: sudo systemctl restart mysqld

停止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 8.0.15 +, password()函数不可用。使用下面的命令。

请使用

UPDATE mysql.user SET authentication_string='password' WHERE User='root';

我认为这是可行的:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'YOURNEWPASSWORD'

(注意,如果你的用户名不是root,你可能应该用你的用户名替换root。)