DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

SBOMs are essential to circumventing software supply chain attacks, and they provide visibility into various software components.

Related

  • Mastering macOS Client-Server Application Testing: Tools and Key Differences
  • Mastering Secure Connections: A Comprehensive Guide to Accessing Sybase Databases From macOS
  • Top Three Methods for iOS Development on Linux
  • Continuous Integration for iOS and macOS: Low-Code Self-Hosted Runner for Xcode Project Automation

Trending

  • Misunderstanding Agile: Bridging The Gap With A Kaizen Mindset
  • Spring and PersistenceContextType.EXTENDED
  • Adaptive Change Management: A DevOps Approach to Change Management
  • Your Kubernetes Survival Kit: Master Observability, Security, and Automation
  1. DZone
  2. Coding
  3. Java
  4. Installing OpenJDK 11 on MacOS

Installing OpenJDK 11 on MacOS

Need help installing OpenJDK 11 on MacOS? Click here to learn how in this simple, easy-to-follow tutorial with sample code!

By 
Kevin Hooke user avatar
Kevin Hooke
·
Oct. 26, 18 · Tutorial
Likes (9)
Comment
Save
Tweet
Share
175.1K Views

Join the DZone community and get the full member experience.

Join For Free

If you download the .tar.gz for OpenJDK 11 directly from http://jdk.java.net/11/, there’s no obvious installation instructions (at least that I could find) on the OpenJDK website or in the .gz file. If you’ve done any fiddling with different JDK versions on MacOS before, you’ve probably come across the ‘/usr/libexec/java_home’ utility, which composes a number of useful things relating to the JDK that you’re currently using in your PATH. Click here for my previous article about this utility and answers to this StackOverflow post, which includes one of the most extensive and useful guides to running different JDK versions on MacOS that I’ve seen.

/usr/libexec/java_home: This will show you where the current JDK home is, for example:

/Library/Java/JavaVirtualMachines/jdk-10.jdk/Contents/Home


/usr/libexec/java_home -V: This lists all installed JDKs, which is shown below:

$ /usr/libexec/java_home -V
Matching Java Virtual Machines (2):
    10, x86_64:    "Java SE 10"    /Library/Java/JavaVirtualMachines/jdk-10.jdk/Contents/Home
    1.8.0_151, x86_64:    "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home


To switch between JDKs, use /usr/libexec/java_home -v version (e.g. 10):

$ /usr/libexec/java_home -v 1.8.0_151
/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home


Knowing that your available JDKs are installed to /Library/Java/JavaVirtualMachines/ by default, moving the contents of the downloaded OpenJDK 11 dir from inside the .gz file to the same location would make sense.

Once you’ve moved it there, java_home -V now shows the new JDK in place:

$ /usr/libexec/java_home -V
Matching Java Virtual Machines (3):
    11, x86_64:    "OpenJDK 11"    /Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home
    10, x86_64:    "Java SE 10"    /Library/Java/JavaVirtualMachines/jdk-10.jdk/Contents/Home
    1.8.0_151, x86_64:    "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home


Updating my aliases to quickly switch versions in my .bash_profile, I now have:

alias j11="export JAVA_HOME=/usr/libexec/java_home -v 11; java -version"
alias j10="export JAVA_HOME=/usr/libexec/java_home -v 10; java -version"
alias j8="export JAVA_HOME=/usr/libexec/java_home -v 1.8; java -version"


Sourcing the .bash_profile (source .bash_profile) and then running each alias, now I’ve got OpenJDK 11 set up and ready to go!

$ j11
openjdk version "11" 2018-09-25
OpenJDK Runtime Environment 18.9 (build 11+28)
OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)


OpenJDK MacOS

Published at DZone with permission of Kevin Hooke, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Mastering macOS Client-Server Application Testing: Tools and Key Differences
  • Mastering Secure Connections: A Comprehensive Guide to Accessing Sybase Databases From macOS
  • Top Three Methods for iOS Development on Linux
  • Continuous Integration for iOS and macOS: Low-Code Self-Hosted Runner for Xcode Project Automation

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • [email protected]

Let's be friends: