【MySQL】MySQL error 1449:The user specified as a definer ('skip-grants user'@'skip-grants host') d...

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

被指定为 definer 的用户('skip-grants user'@'skip-grants host') 不存在


MySQL error 1449: The user specified as a definer does not exist

https://stackoverflow.com/questions/10169960/mysql-error-1449-the-user-specified-as-a-definer-does-not-exist


MySQL : "The user specified as a definer ('root'@'%') does not exist"

http://www.lynnnayko.com/2010/07/mysql-user-specified-as-definer-root.html


MySQL 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法

https://www.cnblogs.com/Magicam/archive/2013/07/22/3207382.html

########################################################################

mysql> grant all privileges on *.* to root@"lcoalhost" identified by "XXX" with grant option;

mysql> grant all privileges on *.* to root@"127.0.0.1" identified by "XXX" with grant option;

mysql> grant all privileges on *.* to root@"%" identified by "XXX" with grant option;

mysql> flush privileges;


mysql> grant all on *.* to 'USER_NAME'@'%' identified by 'XXX with grant option;

mysql> FLUSH PRIVILEGES;

##########################################################################


MySQL如何修改所有的definer

https://www.cnblogs.com/zejin2008/p/4767531.html


MySQL: The user specified as a definer ('root'@'%') does not exist

https://dba.stackexchange.com/questions/107536/the-user-specified-as-a-definer-root-does-not-exist


MySQL视图定义者和安全性definer/invoker的一次踩坑经历

https://pdf.us/2018/02/24/679.html


Modify DEFINER on Many Views

https://dba.stackexchange.com/questions/4129/modify-definer-on-many-views

你可能感兴趣的:(【MySQL】MySQL error 1449:The user specified as a definer ('skip-grants user'@'skip-grants host') d...)