client does not support authentication

win+r

mysql -uroot -p123456        (p后边为mysql密码 由于我已按照步骤设置为123456 所以我的p后为123456,没有不填)

client does not support authentication_第1张图片

 

mysql> alter user 'root'@'localhost' identified with mysql_native_password by '123456'; (注意带分号)
Query OK, 0 rows affected (0.10 sec)

mysql> flush privileges;  (注意带分号)

Query OK, 0 rows affected (0.01 sec)

此时再连接会提示

Access denied for user 'root'@'localhost' (using password: YES) 

原因为刚打开密码,

client does not support authentication_第2张图片

此处输入密码即可。

或者 如最开始所示。

mysql -uroot -p123456

你可能感兴趣的:(网络编程)