Get Started with Azul Platform Prime on Amazon Linux
- Installing a Stream Build via Linux Package
- Installing a Downloaded Stable Build
- Running Azul Platform Prime
Looking for Zing? The Azul Zing Virtual Machine is now Azul Zulu Prime Builds of OpenJDK and part of Azul Platform Prime. Learn more.
Need a different Linux distro? Go back to Azul Platform Prime Downloads.
These instructions guide you through the Azul Platform Prime installation on Amazon Linux only. Amazon Linux is preferred when running on AWS.
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, testing, 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:
sudo rpm --import https://repos.azul.com/azul-repo.key -
Attach the Yum repository:
sudo curl -o /etc/yum.repos.d/zing.repo https://repos.azul.com/zing/amazonlinux/zing.repo -
Run the following command to install Azul Platform Prime:
sudo yum install zing-<jdk-version>
Use the following strings to specify the JDK version:
JDK Version | String |
---|---|
JDK 8 |
zing-jdk1.8.0 |
JDK 11 |
zing-jdk11.0.0 |
JDK 13 |
zing-jdk13.0.0 |
JDK 15 |
zing-jdk15.0.0 |
Installing a Downloaded Stable Build
Stable Builds contain only critical fix backports, are produced on an ongoing basis, and require a license for use.
-
Download the build from https://www.azul.com/products/prime/customer-downloads/
-
Run the following command:
sudo yum localinstall zing<zulu_prime_version>-jdk<version>.rpm
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>
.