linux中mysql运程连接时错误host ‘192.168.0.1’ is not allowed to connect to this MySql server
Posted on 2016-03-09 13:41 漂泊一生 阅读(673) 评论(0) 编辑 收藏 举报1.改表法
可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
mysql -u root -p
mysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>flush privileges;
mysql>select host, user from user;
mysql>exit
2.授权法
在安装mysql的机器上运行:
1、mysql -h -u
2、mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION //赋予任何主机访问数据的权限
3、mysql>FLUSH PRIVILEGES //修改生效
4、mysql>EXIT //退出MySQL服务器