...
It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:
- Download the KEYS
- Download the asc signature file for the relevant distribution
-
Verify the signatures using the following commands, depending on your use of PGP or GPG:
Code Block |
$ pgpk -a KEYS
$ pgpv apache-activemq-<version>-bin.tar.gz.asc
|
or
Code Block |
$ pgp -ka KEYS
$ pgp apache-activemq-<version>-bin.tar.gz.asc
|
or
Code Block |
$ gpg --import KEYS
$ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
|
...