Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

#下载投票的 版本/rc 下的所有内容

https://dist.apache.org/repos/dist/dev/incubator/iotdb/

## 下载公钥

https://dist.apache.org/repos/dist/dev/incubator/iotdb/KEYS

最下边有 Release Manager (RM) 的公钥,把对应的下边这段复制到一个文本文件中,起个名叫 ```key.asc```

...

```
gpg/gpg2 --import key.asc
```

## 验证源码发布版

* (孵化阶段)验证是否名字中有 ```incubating```* 验证是否有 DISCLAIMER、NOTICE、LICENSE,以及内容是否正确。NOTICE、LICENSE,以及内容是否正确。

* 验证 README、RELEASE_NOTES

...

```
gpg2 --verify apache-iotdb-0.912.0-incubating-source-release.zip.asc apache-iotdb-0.912.0-incubating-source-release.zip

出现 Good Singnature

shasum -a512 apache-iotdb-0.912.0-incubating-source-release.zip

和对应的 .sha512 对比,一样就可以。
```

...

```
gpg2 --verify apache-iotdb-0.912.0-incubating-bin.zip.asc apache-iotdb-0.912.0-incubating-bin.zip

出现 Good Singnature

shasum -a512 apache-iotdb-0.912.0-incubating-bin.zip

和对应的 .sha512 对比,一样就可以。
```

...