开发过程中自己遇到的异常(六)

开发过程中自己遇到的异常(六)_第1张图片

 

连接数据库失败:

InternalError: (pymysql.err.InternalError) (1130, "Host 'xxx.xx.1.106' is not allowed to connect to this MySQL server")
(Background on this error at: http://sqlalche.me/e/2j85)
 

解决方式:

mysql> use mysql;

mysql> update user set host = ‘%’ where user = ‘root’;  # 这里的root是自己使用的用户名。

mysql> FLUSH PRIVILEGES;  #  这一步一定要有,不然没有效果。 

你可能感兴趣的:(mysql,数据库)