# 第一步需要检查Mysql的配置

在my.cnf里面配置好允许远程

在[mysqld]里面增加

  skip-name-resolve

# 第二步 配置账号远程权限

grant all privileges on *.* to 'mysql'@'%' identified by 'passwd' with grant option

flush privileges;

相关文章:

  • 2021-06-09
  • 2021-10-28
  • 2022-03-01
  • 2021-06-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-03
  • 2021-11-29
  • 2021-10-27
  • 2021-10-06
  • 2022-01-02
  • 2021-12-28
  • 2021-07-18
相关资源
相似解决方案