Mysql-mysqldump-报错
版本
1 | mysql 5.7.31+ |
报错
1 | mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces |
错误分析
1 | The last PROCESS privilege is new as of MySQL 5.7.31 and MySQL 8.0.21 and may be the |
解决办法
1 | GRANT PROCESS ON *.* TO user@localhost; |