
In this article, we will take a look at how to set the $JAVA_HOME environment variable on the Mac running macOS (or Mac OS X for older versions),
What is $JAVA_HOME?
JAVA_HOME is an Environment Variable that is set on the Operating System (be it Linux, Ubuntu, macOS, or Microsoft Windows) to set the Java JDK (Java Development Environment) or JRE (Java Runtime Environment) and provide the location where the JDK/JRE is installed.
What is the use of JAVA_HOME?
JAVA_HOME is used by the programs that make use of Java or require Java runtime in order to run. Such programs example Eclipse, Tomcat, GlassFish, Oracle SQL Client, Gradle, Maven, Jenkins, Android Studio, etc.
Also if you want to run Java from the command line using the javac and java commands, you would need to set the Java home path in your environment variable.
What is set $JAVA_HOME on macOS (earlier known as Mac OS X)?
If you are using Zsh shell:
- Open Terminal App,
- Find out where Java is installed on your Mac device:
/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home
- Now open .zshrc profile file from home directory,
nano ~/.zshrc
Add the below line in the file (note you Java installation might be different,
export JAVA_HOME="/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home"
Save file file by pressing Control + X and typing Y to save.
- Apply the changes by excuting the command: source ~/.zshrc
To validate if JAVA_HOME is set or not, type command,
% echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home
%
If you are using Bash shell:
If you are using the Bash terminal then the above steps remain the same, just instead of .zshrc file you will use .bashrc file.
How to find macOS version?
To find your macOS (or Mac OS X) version you can make use of the command sw_vers, you will have one of these,
macOS Monterey (Latest): 12.2.1
macOS Big Sur: 11.6.4
macOS Catalina: 10.15.7
macOS Mojave: 10.14.6
macOS High Sierra: 10.13.6
macOS Sierra: 10.12.6
OS X El Capitan: 10.11.6
OS X Yosemite: 10.10.5
OS X Mavericks: 10.9.5
OS X Mountain Lion: 10.8.5
OS X Lion: 10.7.5
Mac OS X Snow Leopard: 10.6.8
Mac OS X Leopard: 10.5.8
Mac OS X Tiger: 10.4.11
Mac OS X Panther: 10.3.9
Mac OS X Jaguar: 10.2.8
Mac OS X Puma: 10.1.5
Mac OS X Cheetah: 10.0.4
- Clear Screen shortcut macOS Terminal
- What is macOS Ventura?
- [fix] How to Show file extensions on all files on Mac
- How to Find Where Mac Terminal App is Located?
- AutoSave button not working on Office on Mac (Word, Excel or Powerpoint)
- macOS say command text to speech using various voices and languages
- How to change Ping TTL value on macOS
- Open .bash_profile File in TextEdit using Terminal
- How to know the Safari Version on Mac
- How to Copy full Absolute Path of a File on Mac
- 13.0 MacOS Ventura release date
- Enable spell check in Sublime Text (macOS)
- How to Display Analog Clock on Mac Menu Bar
- How to turn off Location Services macOS Ventura 13
- How to Open VS Code on Mac
- Add Bookmark macOS Safari
- How to Fix cd: too many arguments Error in Terminal: A Step-by-Step Guide
- How to install wget on macOS
- Select Line Number TextEdit on Mac
- Strikethrough Text in Excel for Mac
- How to Enable or Disable Dark Mode on macOS Ventura 13
- How to hide or display Wifi icon in macOS Bug Sur Menu Bar
- How to install Yarn on Mac (macOS)
- How to fix command not found brew (bash, zsh) on macOS Terminal
- How to Schedule Mails in macOS Ventura
- Reopen previously closed tab in Google Chrome - Chrome
- Convert Java Byte Array to String with code examples - Java
- 'pwd' is not recognized as an internal or external command, operable program or batch file. [Windows] - Bash
- Take Screenshots on Mac OS without Keyboard - Mac-OS-X
- Maven : java.lang.ClassNotFoundException: Xmx512m - Android
- Update Created By (Author) column of SharePoint document using PowerShell - SharePoint
- Two Buttons next to each other in Android Layout - Android
- Check if a file exists or not using Bash Script - Bash