在重配mysql的时候碰到,

mysql "The user specified as a definer ('root'@'%') does not exist" 问题

解决办法:

重新授权

grant all privileges on *.* to root@"%" identified by ".";

刷新权限

flush privileges;

相关文章:

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