Download Installation Package

Before installation, you need to download the installation package and signature file, and use the GPG tool to verify its integrity.

Download the Installation Packages

Log in to the Customer Portal to download the installation packages and signature files. If you have not registered an account, please contact technical support.

Two types of installation packages are available:

  • Core Package: Required for all installations
  • Extensions Package: Optional, download only if needed for additional functionality

Install the GPG Tool

Install the GPG tool according to your operating system (refer to the commands below).

# Ubuntu
sudo apt-get install gnupg
# CentOS
yum install gnupg
# Mac
brew install gpg

Download the Public Key

curl -O https://www.alauda.cn/download/verify-key.pub
md5sum verify-key.pub

The output MD5 value should be: 2eaddfab97d2951a8915f327acb53562.

Verify the Public Key Fingerprint

gpg --import verify-key.pub
gpg --fingerprint BB097AE6

The fingerprint should match exactly:

09EE E7B9 A30C F4B3 5E31 A91B 2704 1C16 BB09 7AE6

Verify the Installation Packages

You must verify each package that you've downloaded:

For the Core Package:

gpg --verify <core package signature file> <core package>

Example:

gpg --verify acp-4.0.0.tgz.sig acp-4.0.0.tgz

If you downloaded the Extensions Package:

gpg --verify <extensions package signature file> <extensions package>

Example:

gpg --verify acp-extensions-4.0.0.tgz.sig acp-extensions-4.0.0.tgz

The normal output should display "Good signature" information for each verification.

Extensions Package Documentation

If you downloaded the Extensions Package, you need to extract its documentation before proceeding with the Core Package installation:

tar -xvf acp-extensions-4.0.0.tgz

Refer to the extracted documentation for information on how to use the Extensions Package alongside the Core Package.

The installation guide will detail the Core Package installation process. The Extensions Package documentation will provide specific instructions for using and configuring the extensions.