远程无法访问mysql主要是由于没有权限,只需添加一下代码即可。
mysql> grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
mysql> flush privileges;//刷新一下权限
第二个’root’表示你的数据库密码。
补充:
如果添加后还是不能访问,很有可能就是防火墙的问题。在centos7 中 ,开放3306端口
firewall-cmd --permanent --zone=public --add-port=3306/tcp //永久的添加该端口
firewall-cmd --reload //加载配置,使得修改有效