# 第一步需要检查Mysql的配置
在my.cnf里面配置好允许远程
在[mysqld]里面增加
skip-name-resolve
# 第二步 配置账号远程权限
grant all privileges on *.* to 'mysql'@'%' identified by 'passwd' with grant option
flush privileges;
# 第一步需要检查Mysql的配置
在my.cnf里面配置好允许远程
在[mysqld]里面增加
skip-name-resolve
# 第二步 配置账号远程权限
grant all privileges on *.* to 'mysql'@'%' identified by 'passwd' with grant option
flush privileges;
转载于:https://www.cnblogs.com/vstarks/p/5478318.html