Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add how to import public keys to solve problem caused by network problem

...

Code Block
gpg2 --receive-keys BA45CDBB87E8B146A81F5BBE2206EF8F64C35889

gpg: key 2206EF8F64C35889: public key "Xiangdong Huang (Apache IoTDB release signing key) <hxd@apache.org>" imported
gpg: marginals needed: 3  completes needed: 1  trust model: pgp
gpg: depth: 0  valid:   2  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 2u
gpg: Total number processed: 1
gpg:               imported: 1


If you find error message when running `gpg2 --receive-keys ....`, like "gpg: keyserver receive failed: No data" or others, it may be caused by the network problem.

In this way, you can load the public key by:  Download the KEYS file from https://dist.apache.org/repos/dist/dev/incubator/iotdb/KEYS , and then

Code Block
gpg2 --import KEYS
gpg: key 089127C15C60D6B9: 6 signatures not checked due to missing keys
gpg: key 089127C15C60D6B9: "Christofer Dutz (Apache Comitter) <cdutz@apache.org>" not changed
gpg: key C336E0143A553B89: 2 signatures not checked due to missing keys
gpg: key C336E0143A553B89: "Julian Feinauer <jfeinauer@apache.org>" not changed
gpg: key 2206EF8F64C35889: "Xiangdong Huang (Apache IoTDB release signing key) <hxd@apache.org>" not changed
gpg: key 0FC7F131CAA00430: "Jialin Qiao <qiaojialin@apache.org>" not changed
gpg: key 93B0ADC828662AC6: "Lei Rui (Apache IoTDB release signing key) <leirui@apache.org>" not changed
gpg: key A8155051CE34C389: public key "刘大伟 <liudw@apache.org>" imported
gpg: Total number processed: 6
gpg:               imported: 1
gpg:              unchanged: 5

Verifying the hashes (SHA512)

...