Archive Installation

Dies ist die englische Version der Seite, da aktuell noch keine deutsche Übersetzung verfügbar ist. Du kannst uns helfen, diese Seite auf Deutsch bereitzustellen. In unserem Leitfaden zu Übersetzungen findest du mehr Informationen.

Archive files provide a simple way to install Eclipse Temurin without a package manager. Download the appropriate archive from the releases page and follow the instructions for your platform below.

Note

For most users, we recommend using a package manager or CI/CD integration instead of manual archive installation. Archives are best suited for custom environments or platforms without package manager support.

Verifying Your Download

All Eclipse Temurin archives include a SHA-256 checksum file. We strongly recommend verifying your download before installation.

Linux / macOS / AIX / Solaris

# Run this in the same directory as the downloaded binary
wget -O- -q -T 1 -t 1 <url_to_checksum_file> | sha256sum -c

Windows

certutil -hashfile <downloaded_file>.zip SHA256

Tip

Checksum files are available alongside every binary on the releases page. You can also verify downloads via the Adoptium API.

In addition to SHA-256 checksums, we provide GPG signatures for all binaries. See Verifying GPG Signatures for instructions on how to verify the authenticity of your downloads using the Adoptium public key.

Linux

# Extract the archive
tar xzf <openjdk_binary>.tar.gz

# Add to PATH
export PATH=$PWD/<extracted_directory>/bin:$PATH

# Verify
java -version

To make this permanent, add the export PATH line to your ~/.bashrc, ~/.zshrc, or equivalent shell profile.

macOS

# Extract the archive
tar xzf <openjdk_binary>.tar.gz

# Add to PATH (note the Contents/Home subdirectory)
export PATH=$PWD/<extracted_directory>/Contents/Home/bin:$PATH

# Verify
java -version

Note

macOS archives include a Contents/Home directory structure that mirrors the standard macOS JDK layout.

Windows

# Extract the archive
Expand-Archive -Path .\<downloaded_file>.zip -DestinationPath .

# Add to PATH (Command Prompt)
set PATH=%cd%\<extracted_directory>\bin;%PATH%

# Verify
java -version

Tip

To set JAVA_HOME and update PATH permanently on Windows, use System Properties > Environment Variables, or run: setx JAVA_HOME "C:\path\to\<extracted_directory>" and setx PATH "%JAVA_HOME%\bin;%PATH%".

AIX

Warning

The last versions of Eclipse Temurin able to run on AIX 7.1 were 8u362, 11.0.18, and 17.0.8. Later versions require the IBM XL C/C++ runtime package:

# Extract the archive (AIX tar does not support the z flag)
gunzip -c <openjdk_binary>.tar.gz | tar xf -

# Add to PATH
export PATH=$PWD/<extracted_directory>/bin:$PATH

# Verify
java -version

Solaris

# Extract the archive
gunzip -c <openjdk_binary>.tar.gz | tar xf -

# Add to PATH
export PATH=$PWD/<extracted_directory>/bin:$PATH

# Verify
java -version
edit icon

Hilf uns, diese Dokumentation zu verbessern!

Alle Adoptium-Dokumentationen sind Open Source. Etwas falsch oder unklar?

Dokumentations-Autoren
gdamstellisonsxa
Join our Slack channel to discuss and reach out to maintainers.Join Slack