MySql 1130-host ... is not allowed to connect to this MySql server

来源:互联网 发布:淘宝店铺过户近亲属 编辑:程序博客网 时间:2024/04/26 11:45
你的帐号不允许从远程登陆,只能在localhost登陆。更改user表里的host项,把“localhost”改为“%”。

mysql > use mysql;

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

mysql > select host, user from user;

mysql > flush privileges;
0 0