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

为什么会这样?


当前回答

$ export PATH=$PATH:/usr/local/mysql/bin

now,to make this permanent:
$ echo 'export PATH=$PATH:/usr/local/mysql/bin' >> ~/.bash_profile

next, start mysql in safe mode:
$ sudo mysqld_safe --skip-grant-tables;

If this does not work, go to System Preferences and stop MySQL server.
next, On the **other** terminal, you may use the below:

$ mysql -u root

mysql> USE mysql;

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

mysql> FLUSH PRIVILEGES;

mysql> exit;

$ mysql -u root
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH 
caching_sha2_password BY 'yourpassword';

$ mysql -u root -p
Enter password: 
mysql> SELECT user();

next, start the mysql server in normal mode. and you're done with resetting your root password. this worked for mysql 8.0.17 ver. for me.
thanks to everyone on top, https://stackoverflow.com/questions/36099028/error-1064-42000-you-have-an-error-in-your-sql-syntax-want-to-configure-a-pa,

https://www.houseninetytwo.com/how-to-use-mysql-in-terminal-on-mac-os-high-sierra/: ~:文本=你% 5月20日% 20 % 20了% 20,% 2 fmysql % 2 fbin % 2 fmysql。= % 20应该% 20执行% 20 % 20对,返回% 20 % 20版本% % 20 mysql中的20个。

其他回答

这个解决方法在我的笔记本电脑上工作!

Mac与macOS v10.14.5 (Mojave)。

MySQL 8.0.17是用Homebrew安装的。

执行如下命令找到MySQL的路径 编译mysql信息 一旦路径已知,我运行这个: /usr/local/Cellar/mysql/8.0.17/bin/mysqld_safe——skip-grant-table 在另一个终端,我运行: Mysql -u root 在该终端中,我使用以下方法更改了root密码: 更新mysql。user='root'; 说完我就跑: 冲洗特权;

voilà,密码被重置。

参考文献

$ export PATH=$PATH:/usr/local/mysql/bin

now,to make this permanent:
$ echo 'export PATH=$PATH:/usr/local/mysql/bin' >> ~/.bash_profile

next, start mysql in safe mode:
$ sudo mysqld_safe --skip-grant-tables;

If this does not work, go to System Preferences and stop MySQL server.
next, On the **other** terminal, you may use the below:

$ mysql -u root

mysql> USE mysql;

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

mysql> FLUSH PRIVILEGES;

mysql> exit;

$ mysql -u root
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH 
caching_sha2_password BY 'yourpassword';

$ mysql -u root -p
Enter password: 
mysql> SELECT user();

next, start the mysql server in normal mode. and you're done with resetting your root password. this worked for mysql 8.0.17 ver. for me.
thanks to everyone on top, https://stackoverflow.com/questions/36099028/error-1064-42000-you-have-an-error-in-your-sql-syntax-want-to-configure-a-pa,

https://www.houseninetytwo.com/how-to-use-mysql-in-terminal-on-mac-os-high-sierra/: ~:文本=你% 5月20日% 20 % 20了% 20,% 2 fmysql % 2 fbin % 2 fmysql。= % 20应该% 20执行% 20 % 20对,返回% 20 % 20版本% % 20 mysql中的20个。

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.]

mysql网站上提供的说明非常清楚,比上面提到的还要清楚

$ sudo /usr/local/mysql/support-files/mysql服务器停止 $ sudo /usr/local/mysql/support-files/mysql服务器启动——skip-grant-tables /usr/local/mysql/bin/mysql mysql> FLUSH PRIVILEGES; mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass'; mysql>退出或按Ctrl + z $ sudo /usr/local/mysql/support-files/mysql服务器停止 $ sudo /usr/local/mysql/support-files/mysql服务器启动 /usr/local/mysql/support-files/mysql -u root -p 输入新密码,即MyNewPass

参考:http://dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html

我用以下方法解决了这个问题:

关闭MySQL服务器:MySQL。服务器停止 以安全模式运行MySQL: mysqld_safe——skip-grant-tables 在另一个终端,使用mysql -u root登录 在同一终端上运行UPDATE mysql。SET authentication_string=null WHERE user ='root';然后用exit退出; 使用mysql停止安全模式服务器。服务器停止后再正常启动;mysql。服务器启动

现在您可以使用

ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';