在解压文件时报出如下错误:
[root@VM-0-16-centos home]# tar -zxvf mysql-8.0.22-linux-glibc2.12-x86_64.tar.xz
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
解决方案:
去掉z,使用tar -xvf,
命令:tar -xvf mysql-8.0.22-linux-glibc2.12-x86_64.tar.xz