ERROR 1133 (42000): Can't find any matching row in the user table

今天在设置远程连接时,报错ERROR 1133 (42000): Can't find any matching row in the user table,后来发现mysql5.7.22数据库mysql.user,表中字段发生了更改:password改为了authentication_string。

mysql> use mysql;

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> grant all privileges  on *.* to root@'%' identified by "";
ERROR 1133 (42000): Can't find any matching row in the user table
mysql> select host,user,authentication_string from user;
+-----------+---------------+-------------------------------------------+
| host      | user          | authentication_string                     |
+-----------+---------------+-------------------------------------------+
| localhost | root          |                                           |
| localhost | mysql.session | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE |
| localhost | mysql.sys     | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE |
+-----------+---------------+-------------------------------------------+
3 rows in set (0.00 sec)


mysql> 

猜你喜欢

转载自blog.csdn.net/w892824196/article/details/80406271