本帖最后由 牵网线的 于 2024-11-7 10:40 编辑
问题: 在虚拟机的centos7上备份数据库,执行脚步时报错 - mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
复制代码但是仍然可以备份 可是这个错误看着不舒服百度了一下 最终找到了答案 在这里记录一下
解决方法: 在centos中用root账号登录mysql - mysql -uroot -p
- GRANT PROCESS ON *.* TO 'demo'@'%';
- flush privileges;
复制代码
查看所有用户权限 - SELECT user,host FROM mysql.user;
复制代码 |