我刚刚在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终端时,请尝试执行FLUSH PRIVILEGES命令。如果这不起作用,请在MySQL终端中尝试以下命令集
mysql -u root
mysql> USE mysql;
mysql> UPDATE user SET password=PASSWORD("NEWPASSWORD") WHERE User='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
用你想要的任何密码更改NEWPASSWORD。应该都准备好了!
更新:从MySQL 5.7开始,密码字段被重命名为authentication_string。修改密码时,使用以下查询来修改密码。所有其他命令保持不变:
mysql> UPDATE user SET authentication_string=PASSWORD("NEWPASSWORD") WHERE User='root';
请不要使用MySQL 8.0+
mysql> UPDATE mysql.user SET authentication_string='password' WHERE User='root';
因为它覆盖了authentication_string,它应该是一个哈希而不是纯文本,而是使用:
mysql> `ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';`
$ 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,你需要建立“根”密码。如果您没有设置根密码,那么就没有根密码,您也不需要密码来登录。
因此,话虽如此,您需要建立一个根密码。
使用终端输入如下:
安装:设置root用户密码:
/usr/local/mysql/bin/mysqladmin -u root password NEW_PASSWORD_HERE
如果你犯了一个错误,或者需要修改root密码,请使用以下方法:
修改root密码:
cd /usr/local/mysql/bin/
./mysql -u root -p
> Enter password: [type old password invisibly]
use mysql;
update user set password=PASSWORD("NEW_PASSWORD_HERE") where User='root';
flush privileges;
quit