Estoy tratando de instalar una versión 10gen de MongoDB en mi Mac local con Mountain Lion (10.8.3):
Lo busco con curl
en:
curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz
Pero no puedo extraer la compilación:
Intento 1:
$ tar -zxvf mongodb.tgz
tar: Unrecognized archive format
tar: Error exit delayed from previous errors.
Intento 2:
$ gunzip mongodb.tgz
gzip: mongodb.tgz: not in gzip format
Intento 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.
Doble clic:
si hago doble clic en el archivo tgz en el buscador, se crea un nuevo archivomongodb.tgz 2.cpgz
¿Alguna idea de lo que estoy haciendo mal aquí? Probé varias compilaciones y todas reproducen este problema:
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
Respuestas:
está intentando descomprimir / descomprimir no el archivo de almacenamiento sino la página de error:
prueba este enlace http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.4.0.tgz
fuente
Disculpas, intente http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.4.0.tgz La URL de descarga cambió con la versión que arreglaremos en los documentos.
fuente