Mountain Lion (10.8.3)을 실행하는 로컬 Mac에 MongenDB 10gen 빌드 를 설치하려고 합니다.
나는 그것을 가지고 가져옵니다 curl
:
curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz
그러나 빌드를 추출 할 수 없습니다.
시도 1 :
$ tar -zxvf mongodb.tgz
tar: Unrecognized archive format
tar: Error exit delayed from previous errors.
시도 2 :
$ gunzip mongodb.tgz
gzip: mongodb.tgz: not in gzip format
시도 3 :
$ unzip mongodb.tgz
Archive: mongodb.tgz
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of mongodb.tgz or
mongodb.tgz.zip, and cannot find mongodb.tgz.ZIP, period.
더블 클릭 :
파인더에서 tgz 파일을 더블 클릭하면 새 파일이 생성됩니다mongodb.tgz 2.cpgz
내가 여기서 뭘 잘못하고 있는지 알아? 나는 다양한 빌드를 시도했으며 모두이 문제를 재현합니다.
http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.3.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_32-2.4.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_32-2.3.tgz > mongodb.tgz
3
컨텐츠 유형을 식별하기 위해 "file mongodb.tgz"를 수행하십시오.
—
andrekeller