is not allowed to connect to this MySQL server

使用流马连接mysql报错

pymysql.err.OperationalError: (1130, "UIN-20200724DOG' is not allowed to connect to this MySQL server")

is not allowed to connect to this MySQL server_第1张图片

这是因为
mysql数据库只允许自身所在的本机器连接,不允许其他机器远程连接。

如果是root用户,执行sql语句:

use mysql;
 
select host from user where user='root';

is not allowed to connect to this MySQL server_第2张图片

 

如果是localhost ,那么就是只允许本地连接

update user set host = '%' where user ='root';

flush privileges;

is not allowed to connect to this MySQL server_第3张图片 

 

你可能感兴趣的:(错误解决,mysql,数据库)