Turn Your Vehicle Into a Smart Earning Asset

While youโ€™re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

๐Ÿš— You set the rental price
๐Ÿ” Secure bookings with verified renters
๐Ÿ“ Track your vehicle with GPS integration
๐Ÿ’ฐ Start earning within 48 hours

Join as a Partner Today

Itโ€™s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Jenkins Error: Running two Java Versions – Jenkins Problem in Mac OS

Hi Everyone – Today we are going to discuss about how to have two version of Java Development Kit running in MAC OS and how to switch between them.

This problem statement came when I was playing around with Jenkins setup – As we all Jenkins still demands Java 1.8 ! and not higher . Problem started as I had Java 1.13 as globally installed. Which in turn is not supported by Jenkins Latest version as of Feb 2020.

So when I did something like java -v on cmd , got below response:

Then as all I thought no worries let me install the Java 1.8 and day will be saved, so for that I ran this :

brew cask install adoptopenjdk/openjdk/adoptopenjdk8

I’m installing Java via brew – which I personally believe is easiest way to install Java on mac – brew is a package manager for Mac OS like Chocolatey for Windows.

Which resulted in something like this :

Now after this step if you will try – doing java -v still you will not be able to get java 1.8 as default environment.

So What else we have to do ? Let’s explore that !

First we will list – all the java version installed on machine by :

/usr/libexec/java_home -V

We can see I have two versions now.

Lets make 1.8 as default version by running :

export JAVA_HOME=`/usr/libexec/java_home -v 1.8`Code language: JavaScript (javascript)

In above command I’m pointing JAVA_HOME to 1.8 version explicitly.

Lets run java -version again !

Caution – Java 1.8 does not support short hand for version i.e -v instead you have to type : java -version full command to get the output.

Gaurav Bajpai

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.