sqlyog的连接完美版

实现sqlyog的连接:

查找:rpm -qa | grep -i mysql

启动:systemctl start mysql

方法一:

修改mysql 权限: grant all privileges on . to root@'%' identified by 'ok';

刷新:flush privileges;

方法二:

关闭关闭防火墙:systemctl stop firewalld

​ systemctl disable firewalld

完成后重新启动:reboot

这样就OK了!

原文地址:https://www.cnblogs.com/tudousiya/p/11138539.html