install-gremlin-server.sh 生成无法解压的 titan-1.0.0-hadoop1.zip
install-gremlin-server.sh generates titan-1.0.0-hadoop1.zip which can not be unzipped
我正在安装并 运行 用于 Titan 的 DynamoDB 存储后端。按照 Installing and Running DynamoDB for Titan
给出的说明进行操作
第五步要求我使用
安装 gremlin 服务器
src/test/resources/install-gremlin-server.sh
我做到了,但是服务器文件夹下生成的文件是titan-1.0.0-hadoop1.zip。哪个不能解压。它给出了错误
Archive: titan-1.0.0-hadoop1.zip
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 titan-1.0.0-hadoop1.zip or
titan-1.0.0-hadoop1.zip.zip, and cannot find titan-1.0.0-hadoop1.zip.ZIP, period.
而且指令 6 说要转到目录
cd server/dynamodb-titan100-storage-backend-1.0.0-hadoop1
没有生成这样的目录。它生成的唯一 zip 文件具有不同的名称,并且没有被解压缩
在 .sh 文件中,有一个 curl 调用在我的(也许是你的)linux 机器上不起作用
解决方案是使用 wget 而不是 curl。
已替换
curl -s -O http://s3.thinkaurelius.com/downloads/titan/${TITAN_VANILLA_SERVER_ZIP}
和
wget http://s3.thinkaurelius.com/downloads/titan/${TITAN_VANILLA_SERVER_ZIP}
我正在安装并 运行 用于 Titan 的 DynamoDB 存储后端。按照 Installing and Running DynamoDB for Titan
给出的说明进行操作第五步要求我使用
安装 gremlin 服务器src/test/resources/install-gremlin-server.sh
我做到了,但是服务器文件夹下生成的文件是titan-1.0.0-hadoop1.zip。哪个不能解压。它给出了错误
Archive: titan-1.0.0-hadoop1.zip
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 titan-1.0.0-hadoop1.zip or
titan-1.0.0-hadoop1.zip.zip, and cannot find titan-1.0.0-hadoop1.zip.ZIP, period.
而且指令 6 说要转到目录
cd server/dynamodb-titan100-storage-backend-1.0.0-hadoop1
没有生成这样的目录。它生成的唯一 zip 文件具有不同的名称,并且没有被解压缩
在 .sh 文件中,有一个 curl 调用在我的(也许是你的)linux 机器上不起作用 解决方案是使用 wget 而不是 curl。
已替换
curl -s -O http://s3.thinkaurelius.com/downloads/titan/${TITAN_VANILLA_SERVER_ZIP}
和
wget http://s3.thinkaurelius.com/downloads/titan/${TITAN_VANILLA_SERVER_ZIP}