sqlyog 远程连接服务器的数据库问题:
错误号码2003:Can\’t no connet to MySQL server on 192.168.186.X
问题:服务器的防火墙没关
systemctl stop firewalld
systemctl disable firewalld
错误号码1130:Host \’某IP\’ is not allowed to connet to this MySQL server
问题:数据库没有为此主机授权
GRANT ALL PRIVILEGES ON *.* TO \’root\’@\’错误上的IP\’ IDENTIFIED BY \’123456\’ WITH GRANT OPTION;
总结:远程连接数据库,一看防火墙,二看端口,三看授权,大部分都可以解决连接出现的问题。