mysql报错host '192.168.5.100' is not allowed to connect to this mysql server

发布时间:2019-08-03编辑:脚本学堂
有关mysql错误host '192.168.5.100' is not allowed to connect to this mysql server的解决办法,有遇到此问题的朋友参考下。

linux系统下apt方式安装的,mysql的远程连接出现错误:
HOST '192.168.5.100'  is not allowed to connect to this mysql server

解决方法:
1:linux的mysql的配置文件(/etc/mysql/my.cnf)中如果有这么一行
 

bind_address=127.0.0.1    // 把它注释掉了
//bind_address是监听ip,如果设置为127.0.0.1表示只允许本机连接而不提供远程服务,推荐设置

2:然后给账号授权(mysql用户授权
 

GRANT  ALL PRIVILEGES ON    *.*    TO   root@'%';
FLUSH  PRIVILEGES;

重启mysql,重新连接即可。