无法在OSX上解压缩.tgz mongodb发行版

时间:2017-09-27 01:42:16

标签: mongodb macos tar gz

我通过

抓取tgz文件
curl -O https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-2.6.12.tgz

是的我想要mongodb版本2.6.12 ...... :(

我尝试使用以下方法解压缩它:

tar -xvzf mongodb-osx-ssl-x86_64-2.6.12.tgz

但我明白了:

tar: Unrecognized archive format
tar: Error exit delayed from previous errors.

有人知道可能出现什么问题吗?

1 个答案:

答案 0 :(得分:3)

该文件没有下载属性,因此即使它是文件系统上的.tgz文件,它也不完整或已损坏。要获得正确的下载,我不得不放弃ssl

之前:

curl -O https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-2.6.12.tgz

后:

curl -O https://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.6.12.tgz

然后用tar解压缩工作。 √