连接数据库失败:
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; # 这一步一定要有,不然没有效果。