HeidiSQL无法连接Myql
            时间:2016-05-10 16:43:51  
            收藏:0  
            阅读:1948
        
        
        # 第一步需要检查Mysql的配置
在my.cnf里面配置好允许远程
在[mysqld]里面增加
skip-name-resolve
# 第二步 配置账号远程权限
grant all privileges on *.* to ‘mysql‘@‘%‘ identified by ‘passwd‘ with grant option
flush privileges;
            评论(0)