Error : failed to fetch query result SELECT server _ uuid , local , replication,storage_engines FROM performance_schema.log_status: Access denied; you need (atleast one of) the BACKUP_ADMIN privilege(s) for this operation


这个问题的意思是,你当前使用的这个备份的账号没有备份的权限,怎么解决呢?看下面:


# 更改备份用户的权限mysql> grant all on *.* to `用户名`@`%` with grant option;

或者,新增一个用户用于备份:


#首先连接mysql(123456 是你的密码)[root@localhost ~]# mysql -uroot -p123456#进入 mysql 库mysql> use mysql;#新建一个用户 ( starsky 是新用户名 123456 是密码 )mysql> create user `starsky`@`%` identified by '123456';#给予权限mysql> grant all on *.* to `starsky`@`%` with grant option;

xtrabackup备份报错:Error : failed to fetch query result SELECT server _ uuid , local , replication相关推荐

  1. 安装32位mysql报错_在CentOS中安装32位或64位MySql报错error: Failed dependencies解决办法...

    在CentOS中安装MySql报错error: Failed dependencies解决办法 安装64位MySql报错内容如下: error: Failed dependencies: libaio ...

  2. 【Mac】Mac下安装MySQL优化工具 percona-toolkit 报错 Error: Failed to download resource openssl@1.1

    1.背景 mac 下安装percona-toolkit 报错 Error: Failed to download resource "openssl@1.1" Download f ...

  3. 小米MiFlash报错error:FAILED(remote:updatesparsecrclistfailed)

    小米10 MIUI12.5退回MIUI11 小米MiFlash刷机工具报错 error:FAILED (remote: update sparse crc list failed) 昨天把小米10从M ...

  4. ReactNative打Release生产包报错error: failed parsing overlays

    ReactNative打Release生产包报错error: failed parsing overlays 一,生成静态JS Bundle文件 在项目根目录下执行以下命令: react-native ...

  5. 解决:安装html-loder后,运行报错Error: Failed to compile with 1 error

    项目创建过程中,因为vue.config.js的配置里引用了html-loder,且项目运行时,也提示需要安装html-loder,但安装后,再次运行,就报错Error: Failed to comp ...

  6. Vue3报错:Failed to fetch dynamically imported module

    Vue3报错:Failed to fetch dynamically imported module解决 翻译:获取动态导入的模块失败 目前发现三个能够导致此报错出现的原因(未完待续): ①是路由路径 ...

  7. 在react-nactive项目中运行时,报错error Failed to install the app

    在react-nactive项目中运行时,报错 error Failed to install the app. Make sure you have the Android development ...

  8. 【Git】push 分支报错 error: failed to push some refs to...

    文章目录 报错消息 解决方法 报错消息 示例图: 示例代码: ➜ fisher git:(test) git push origin test To git.woa.com:wxg-bigdata/f ...

  9. push时git报错 error: failed to push some refs to 'git@gitee.com:git_zn/jianli.git' 解决办法...

    完整的错误提示如下 To gitee.com:git_zn/jl.git! [rejected] master -> master (fetch first) error: failed to ...

最新文章

  1. Android Market 链接的生成与分享
  2. base64格式的图片上传阿里云
  3. Linux安装好php后找不到php.ini
  4. 机器学习-LR推导及与SVM的区别
  5. GC算法-引用计数法
  6. js 把对象按照属性名的字母顺序进行排列
  7. 国产剧注水严重 广电总局拟将出手:剧集不得超过40集
  8. python︱模块加载(pip安装)以及pycharm安装与报错解决方式
  9. Javascript:FormDate和FileReader
  10. 【电脑硬件问题】视频接口和显示器偏色
  11. svn 回退到指定版本无法提交_svn回滚到指定版本
  12. 前端js获取文件名、后缀,截取文件名后缀
  13. FCN(全卷积网络)部分函数方法更新说明
  14. YouTube深度学习推荐
  15. vector<int> v 与 vector<int> v(n) 的区别
  16. c语言基础:getchar()
  17. 利用Java反射机制实现短信接口更换
  18. PCB工艺规范及PCB设计安规原则
  19. SIM卡座与SD卡座的生产标准化要求
  20. 博客园定制CSS代码

热门文章

  1. Linux用户和组命令详解(groupadd、useradd)
  2. 16.试题编号:2-16 《码头中心船货申报系统》进出港船只申报模块----技能抽查
  3. VMware 安装win11
  4. AT89C51单片机项目——秒表系统
  5. MSP430F5529 (六)定时器Timer_A
  6. 网球线的几个常见问题
  7. angular 延迟时间
  8. linux tree命令不显示所有文件
  9. Hook神器—Frida安装
  10. vue之上/下架的操作