0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CentOS 8にOpenJDK11 + HotSpotをインストール(AdoptOpenJDK)

Last updated at Posted at 2019-10-07

はじめに

AdoptOpenJDKを利用してCentOS8にOpenJDK11 + HotSpotをインストール
親記事:OpenJDKの各種インストール方法とEOLまとめ
参考:Installation | AdoptOpenJDK - Open source, prebuilt OpenJDK binaries

2019-10-06現在Supported Platformsに掲載はないがIndex of rpm/centos/8が存在し、インストール自体は可能。

サポート

本手法で導入した場合、Support | AdoptOpenJDK - Open source, prebuilt OpenJDK binariesより、2022-09 2024-10がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

LOG

レポジトリ登録

cat <<EOF > /etc/yum.repos.d/adoptopenjdk.repo
[AdoptOpenJDK]
name=AdoptOpenJDK
baseurl=http://adoptopenjdk.jfrog.io/adoptopenjdk/rpm/centos/8/$(uname -m)
enabled=1
gpgcheck=1
gpgkey=https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public
EOF

インストール

# cat /etc/redhat-release
CentOS Linux release 8.0.1905 (Core)

# yum install -y adoptopenjdk-11-hotspot which
... 略

各種確認

# which java
/usr/bin/java

# java -version
openjdk version "11.0.4" 2019-07-16
OpenJDK Runtime Environment AdoptOpenJDK (build 11.0.4+11)
OpenJDK 64-Bit Server VM AdoptOpenJDK (build 11.0.4+11, mixed mode)
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?