ERROR 1698 (28000): Access denied for user ‘root‘@‘localhost‘

ERROR 1698 (28000): Access denied for user ‘root’@‘localhost’

即不能通过root来登录mysql

首先用内置用户登录
输入下面的代码可以看到用户和密码
mysql> update mysql.user set authentication_string=PASSWORD(‘newPwd’), plugin=‘mysql_native_password’ where User=‘root’;

sudo cat /etc/mysql/debian.cnf

mysql -u debian-sys-maint -p
//登录后输入下面的代码
select User, plugin from mysql.user;

可以看到root的plugin是auth_socke
关于auth_socke的介绍,链接: link.
要把root的验证方式用以下代码改成本地密码验证

update user set plugin="mysql_native_password" where user='root';

后面就可以开始改root的本地密码了:
很多文章说要先把密码改成空的

use mysql;
UPDATE user SET authentication_string="" WHERE user=“root”;

然后改成自己想要的密码;

ALTER USER ‘root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY '新密码';
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值