导入sql文件时报错:

ERROR 1449 (HY000): The user specified as a definer ('skip-grants user'@'skip-grants host') does not exist

解决方式如下(红色字体即为上述括号里的内容)

mysql> grant all privileges on *.* to 'skip-grants user'@'skip-grants host' identified by ".";

再次执行source,导入sql文件,不再报错。

结束。

相关文章:

  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-08
  • 2021-10-08
  • 2021-08-08
  • 2021-12-22
  • 2022-12-23
  • 2021-08-11
相关资源
相似解决方案