curl -s https://repos.azul.com/azul-repo.key | sudo gpg --dearmor -o /usr/share/keyrings/azul.gpg
echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zing/debian $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/zing.list
Get Started with Azul Platform Prime on APT Systems
Note
|
Need a different Linux distro? Go back to Azul Platform Prime Downloads. |
These instructions guide you through the Azul Platform Prime installation for APT-based installation packages. APT packages are available for the following operating systems:
-
Debian
-
Ubuntu
Installing a Stream Build via Linux Package
Stream Builds are produced once a month, do not receive any security backports, and are free for development and evaluation. By downloading Stream Builds, you agree to the Azul Platform Prime Evaluation Agreement. For more information, see the Azul Platform Prime Roadmap.
-
Import Azul’s public key:
OS Command Debian
Ubuntu
curl -s https://repos.azul.com/azul-repo.key | sudo gpg --dearmor -o /usr/share/keyrings/azul.gpg echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zing/ubuntu $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/zing.list
Note
|
The generated file requires access permissions level 644. You can set this permission using chmod 644 azul.gpg .
|
-
Update the information about available packages:
sudo apt update -
Run the following command to install Azul Platform Prime:
sudo apt install zing-jdk<version-number>Use the following strings to specify the JDK version number:
JDK Version Version string JDK 8 x86
1.8.0
JDK 8 ARM64
8.0.0
JDK 11
11.0.0
JDK 13
13.0.0
JDK 15
15.0.0
JDK 17
17.0.0
JDK 21
21.0.0
Installing a Downloaded Stable Build
Stable Builds require a license for use, contain only critical fix backports, and are produced on an ongoing basis.
-
Download the build from the Azul Platform Prime Customer Downloads page.
-
Import Azul’s public key:
curl -s https://repos.azul.com/azul-repo.key | sudo gpg --dearmor -o /usr/share/keyrings/azul.gpg echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zing/ubuntu $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/zing.list sudo apt update
Note
|
The generated file requires access permissions level 644. You can set this permission using chmod 644 azul.gpg .
|
-
Run the following command:
sudo apt install ./<apt-installation-file>The <apt-installation-file> has the following form:
zing<zulu_prime_version>-jdk<version>-<architecture>.deb
For example:
zing22.08.301.0-1-jdk17.0.5.0.101-linux_amd64.deb
Installing a Downloaded Stream Build
Stream Builds are available for development and trial use and include the latest major features. Stream builds are released regularly on a monthly basis.
-
Download the build from the Azul JDK Downloads page.
-
Run the following command:
sudo apt install ./<apt-installation-file>The <apt-installation-file> has the following form:
zing<zulu_prime_version>-jdk<version>-<architecture>.deb
,For example:
zing23.01.0.0-3-jdk17.0.6-linux_amd64.deb
Running Azul Platform Prime
Once you performed all installation steps, you can start running your Java applications with Azul Platform Prime as follows:
-
Verify the Java version:
/opt/zing/zing-<jdk-version>/bin/java -versionSample output for Java 8:
java version "1.8.0-zing_19.07.0.0" Zing Runtime Environment for Java Applications (build 1.8.0-zing_19.07.0.0-b3) Zing 64-Bit Tiered VM (build 1.8.0-zing_19.07.0.0-b4-product-linux-X86_64, mixed mode)You may want to set the
JAVA_HOME
environment variable to point to the Azul Platform Prime installation directory, e.g.export JAVA_HOME=/opt/zing/zing-<jdk-version>
.