您的位置:首页 > 数据库 > MySQL

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

2016-12-18 20:26 330 查看
你的帐号不允许从远程登陆,只能在localhost登陆。更改user表里的host项,把“localhost”改为“%”。

mysql > use mysql;

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

mysql > select host, user from user;

mysql > flush privileges;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐