1
1

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.

macOSにOpenJDKをインストールする

Last updated at Posted at 2020-04-14

OpenJDK 11.0.2の場合

  1. Archived OpenJDK General-Availability Releasesからダウンロードする。

    wget https://download.java.net/java/GA/jdk11/9/GPL/openjdk-11.0.2_osx-x64_bin.tar.gz
    
  2. openjdk-11.0.2_osx-x64_bin.tar.gzファイルを/Library/Java/JavaVirtualMachines/に解凍する。

    sudo tar zxvf openjdk-11.0.2_osx-x64_bin.tar.gz -C /Library/Java/JavaVirtualMachines/
    
  3. ファイルの所有者/所有グループを変更する。

    sudo chown -R root:wheel /Library/Java/JavaVirtualMachines/jdk-11.0.2.jdk
    
  4. OpenJDKが認識されていることを確認する。

    /usr/libexec/java_home -V
    
  5. JAVA_HOME環境変数を登録する。

    export JAVA_HOME=`/usr/libexec/java_home -v 11.0.2`
    
  6. javaコマンドを実行し、動作確認する。

    java -version
    
  7. macOS Catalina 10.15はzshを採用しているため、~/.zprofileファイルを変更する。

    vi ~/.zprofile
    
    export JAVA_HOME=`/usr/libexec/java_home -v 11.0.2`
    
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?