Find JAVA_HOME JDK Location on macOS
This article provides the steps to locate Java JDK location on macOS. The system version is 11.1 (macOS Big Sur).
Find JDK
- Open Terminal.
- Change directory to /Library/Java/JavaVirtualMachines.
cd /Library/Java/JavaVirtualMachines
- List JDKs:
ls
- In my system, there are two SDKs (JDK8 and JDK11):
bash-3.2$ ls
jdk-11.0.9.jdk jdk1.8.0_201.jdk
Setup JAVA_HOME variable
JAVA_HOME variable is required by a number of Java dependent applications. Use the following command line to setup the variable:
export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk-11.0.9.jdk/Contents/Home"
info Last modified by Administrator 4 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.