首页 > 数据库 >navicate12 连接MySQL8 报错

navicate12 连接MySQL8 报错

时间:2022-11-03 08:58:27浏览次数:77  
标签:affected MySQL8 navicate12 +------+-----------------------+------+ 报错 user mysql

 

 

mysql> select user,plugin,host from user where user ='root';
+------+-----------------------+------+
| user | plugin | host |
+------+-----------------------+------+
| root | caching_sha2_password | % |
+------+-----------------------+------+


mysql> alter user root@'%' IDENTIFIED BY 'Huwei' PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.01 sec)

mysql> alter user root@'%' IDENTIFIED WITH mysql_native_password BY 'Huawei@169' ;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

标签:affected,MySQL8,navicate12,+------+-----------------------+------+,报错,user,mysql
From: https://www.cnblogs.com/vzhangxk/p/16853212.html

相关文章