top of page

Setting up the Java environment variable on Linux

Updated: Oct 28, 2021

Prior to installing your Talend product, you have to set the JAVA_HOME and Path environment variables.

Let's start with the procedure of setting up a java environment variables in Linux


Step 1:Find the JRE installation home directory.


Example:

/usr/lib/jvm/jre1.8.0_65

Step 2: Export it in the JAVA_HOME environment variable.


Example:


export JAVA_HOME=/usr/lib/jvm/jre1.8.0_65 

export PATH=$JAVA_HOME/bin:$PATH

Step 3: Add these lines


Add these lines at the end of the user profiles in the ~/.profile file or, as a superuser, at the end of the global profiles in the /etc/profile file.


Step 4: Log out and log in to your PC/Laptop again.

4 views0 comments

Comments


©2022 www.theblackthreat.in All right reserved.
bottom of page