mysql备份错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql备份错误相关的知识,希望对你有一定的参考价值。
这个报错是指此用户没有权限
mysqldump: Got error: 1449: The user specified as a definer (‘admin‘@‘%‘) does not exist when using LOCK TABLES
解决方法:
mysql> GRANT select, lock tables ON dbname.* TO ‘admin‘@‘%‘;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
添加以上两条即可
以上是关于mysql备份错误的主要内容,如果未能解决你的问题,请参考以下文章