LoginSignup
1
0

More than 1 year has passed since last update.

Ubuntu 20.04にOpenJDK 17をインストール(Amazon Corretto)

Posted at

はじめに

Amazon Correttoを利用してUbuntu 20.04にOpenJDK17をインストール
親記事:OpenJDKの各種インストール方法とEOLまとめ
参考:Debian ベースおよび RPM ベースの Linux ディストリビューションで Amazon Corretto 11 をインストールする手順 - Amazon Corretto

サポート

本手法で導入した場合、よくある質問 - Amazon Corretto | AWSより、2029-10がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

LOG

インストール

# cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.3 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.3 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

# apt-get update; apt install -y wget gnupg software-properties-common
# wget -O- https://apt.corretto.aws/corretto.key | apt-key add - 
# add-apt-repository 'deb https://apt.corretto.aws stable main'
# apt-get update; apt-get install -y java-17-amazon-corretto-jdk
... 略

各種確認

# which java
/usr/bin/java

# java -version
openjdk version "17.0.1" 2021-10-19 LTS
OpenJDK Runtime Environment Corretto-17.0.1.12.1 (build 17.0.1+12-LTS)
OpenJDK 64-Bit Server VM Corretto-17.0.1.12.1 (build 17.0.1+12-LTS, mixed mode, sharing)
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0