我最近安装了MySQL,似乎在安装后我必须重置密码。它不让我做别的事。

现在我已经用通常的方式重置了密码:

update user set password = password('XXX') where user = root;

(顺便说一句:我花了很长时间才发现MySQL出于某种奇怪的原因将字段“password”重命名为“authentication_string”。我对这样的变化感到很不安。

不幸的是,似乎我需要改变密码不同的方式,我不知道。也许在座有人已经遇到过这个问题了?


当前回答

当你使用SET PASSWORD = PASSWORD('your_new_password');它可能会为此崩溃

错误1819 (HY000):您的密码不符合当前策略 需求)

.你可以使用SET GLOBAL validate_password_policy=LOW;去解决它。

其他回答

UPDATE user SET authentication_string=PASSWORD("MyPassWord") WHERE user ='root'; 错误1064(42000):你有一个错误的SQL语法;查看MySQL服务器版本对应的手册,在第一行'("MyPassWord") WHERE User='root "附近使用正确的语法

解决与

ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';

以下网站参考资料

https://dev.mysql.com/doc/refman/8.0/en/resetting-permissions.html

5.7版本。“password”字段已被删除。'authentication_string'替换它

use mysql;
update user set authentication_string=password('123456') where user='root';
flush privileges;

这招对我很管用:

ALTER USER(用户名)

我在这里找到的: http://dev.mysql.com/doc/refman/5.7/en/alter-user.html#alter-user-current

我也有同样的问题。拒绝访问。

所以我的解是,

mysql> USE mysql;
mysql> SELECT User, Host, plugin FROM mysql.user;

你可以看到插入的列名

我把插件从 Unix_socket ->到mysql_native_password

输入这个

mysql > use mysql;
mysql> update user set plugin='mysql_native_password' where user='root';
mysql> flush privileges;

完成了。 我的版本是10.1.48 MariaDB ubuntu 18

要更改用户密码:

首先,以root登录 $ sudo mysql 修改用户密码 修改用户名:USER @ localhost