xtrabackup-解压备份文件报错sh: qpress: command not found

# xtrabackup --decompress  --target-dir=/data/compressed
xtrabackup version 2.4.8 based on MySQL server 5.7.13 Linux (x86_64) (revision id: 97330f7)
170921 14:04:52 [01] decompressing ./xtrabackup_logfile.qp
sh: qpress: command not found
cat: write error: Broken pipe
Error: thread 0 failed.

  

原因是decompress解压缺少工具qpress解压办法:

# wget http://www.quicklz.com/qpress-11-linux-x64.tar
# tar xvf qpress-11-linux-x64.tar
# cp qpress /usr/bin

  

安装好qpress后就可以正常解压了!

时间: 2024-10-11 10:11:11

xtrabackup-解压备份文件报错sh: qpress: command not found的相关文章

Ubuntu 16.04 - 64bit 解压 rar 报错 Parsing Filters not supported

Ubuntu 16.04 - 64bit  解压rar 文件报错: 错误如下图: 原因: 未安装解压命令 unrar 参考博客: Error - "Parsing Filters not supported" 解决方法: 终端输入: sudo apt-get install unrar 这样就能解压rar文件了

解决解压JDK报错:tar: Error is not recoverable

报错 #tar -xvf jdk-8u131-linux-x64.tar.gz,执行命令后报错如下:gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now 完美解决 在wget后添加一下 --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-secureb

python安装locustio报错error: invalid command 'bdist_wheel'的解决方法

locust--scalable user load testing tool writen in Python(是用python写的.规模化.可扩展的测试性能的工具) 安装locustio需要的环境条件是:Python2.6+,但是不支持Python3. 今天在cmd里运行pip install locustio,报错提示:error: invalid command 'bdist_wheel'. 原因:pip和setuptools的版本较低. 解决方案:升级pip和setuptools. 一

python 链接codis 报错解决办法 command 'EXEC' is not allowed

[[email protected] ceph]# python ../pkg/redisbase.py Traceback (most recent call last):   File "../pkg/redisbase.py", line 85, in redis_hget     values = self.pipe.execute()   File "/usr/lib/python2.7/site-packages/redis/client.py", li

MySQL执行外部sql脚本文件命令报错:unknown command '\'

由于编码不一致导致的 虽然大部分导出是没有问题的 但是数据表中存储包含一些脚本(富文本内容)会出现该问题,强制指定编码即可解决. mysql导入时指定编码: mysql -u root -p --default-character-set=utf8 或者在导出时后显式指定编码就不存在这个问题了: mysqldump -uroot -p --default-character-set=utf8 mydb > E://xxxx.sql MySQL执行外部sql脚本文件命令报错:unknown com

在WSL中安装swool报错 error: unrecognized command line option '-V' 的解决方法

Windows Subsystem for Linux Ubuntu中使用pecl安装swool时遇到错误"error: C compiler cannot create executables"."error: unrecognized command line option '-V'" 解决方法 先看解决方法, 将gcc版本降低到4.8即可,因为高版本gcc取消了-V参数: sudo apt install gcc-4.8 -y sudo update-alte

使用tar解压文件报归档中找不到

1.今天使用tar命令解压jdk安装包时,报如下错误.tar -zxvf jdk-8u181-linux-x64.tar.gz /usr/local/java/ 2.后来查了一下,因为我解压当前的文件到其他目录文件中去,必须加一个参数才可以.tar -zxvf jdk-8u181-linux-x64.tar.gz -C /usr/local/java/ 一定要加上那个-C   参数 表示更换目录的意思. 原文地址:https://www.cnblogs.com/yuanchaoyong/p/97

expect报错: spawn: command not found

expect脚本执行后报错: 如下内容 autosu.sh: line 3: spawn: command not foundcouldn't read file "password:": no such file or directoryautosu.sh: line 5: send: command not foundautosu.sh: line 6: interact: command not found 说明执行方式不正确,因为expect用的不是bash所以会报错.执行的时

执行setup,报错 -bash: setup: command not found

执行setup,报错. [[email protected] ~]# setup -bash: setup: command not found 出现这个问题的是因为没有安装setuptool软件 1.安装setuptool [[email protected] ~]# yum install setuptool -y 2.安装系统服务管理 [[email protected] ~]# yum install ntsysv -y 3.安装setup中的防火墙设置 [[email protecte