
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
- How to Open Finder using Mac Terminal
- How to install maven in macOS using Terminal Command
- How to install iTerm2 Mac Terminal Alternative
- Find Mac version using terminal command
- Zsh Shell: Custom alias that you may find useful
- How to Uninstall Brew on Mac
- Go to Specific file path using Mac Finder
- How to open new tabs macOS Terminal
- fix macOS: The digital signature on the update is missing or invalid. Ventura
- ls: .: Operation not permitted - Mac Terminal ZSH Error
- Closest Alternate to Notepad on Mac
- How to Open Trash on Mac
- How to uninstall Microsoft Outlook on Mac
- [fix] macOS Ventura xcrun: error: invalid active developer path missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- [Vi/Vim] How to move cursor to the start of a line
- macOS 13 Ventura - The New About this Mac Window
- Best Free Gif screen capture app now available for M1 Chip Mac - LICECap
- 30+ Zoom video communications application shortcuts for macOS
- How to create alias in macOS
- How to install Node using Brew on Mac
- How to start/boot macOS in safe mode - Big Sur 11.0, Catalina 10.15, or Mojave 10.14
- Cant find System Preferences... under macOS Ventura Apple Menu?
- Mac turn dark mode on or off using terminal command
- How to Close Safari in Mac using Keyboard shortcut
- How to Upgrade Mac from Monterey to macOS Ventura
- sudo is not recognized as an internal or external command - Windows
- Word-wrap Eclipse Console logs - Eclipse
- How to disable button in Bootstrap - Bootstrap
- Notepad++ sort by name with example - NotepadPlusPlus
- Enable macOS Stage Manager - MacOS
- Are Windows Notepad files recoverable? - NotepadPlusPlus
- Call a Stored Procedure using Java JDBC CallableStatement Example - Java
- How do I run HTML file in Notepad? (Windows) - NotepadPlusPlus