How to install JDK and set environment variables in Linux (this article is enough)

How to install JDK and set environment variables in Linux (this article is enough)

1. Check the number of Linux bits

Check whether Linux is 32-bit or 64-bit, which affects the version of JDK you need to download

System Bits JDK bit number
x86 (32-bit) 32-bit
x86_64 (64-bit)

32-bit

64-bit

Enter the command in Linux:

uname -a

If it is a 64-bit machine, it will output x86_64

2. Download JDK

Download address: https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html

Corresponding to step 1, download the 64-bit version of linx

3. Install JDK

Upload the downloaded jdk to linux and unzip the compressed file

tar -zxvf jdk-11.0.6_linux-x64_bin.tar.gz

4. Set environment variables

Modify the /etc/profile file

vim /etc/profile, add the following content:

export JAVA_HOME=/usr/local/jdk/jdk-11.0.6 #Change to the installation path of jdkexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$JAVA_HOME/bin:$PATH

source /etc/profile to make the environment variables effective

5. Test results

Enter the command in Linux:

[root@localhost local]# java -version
java version "11.0.6" 2020-01-14 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.6+8-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.6+8-LTS, mixed mode)

Seeing the above results, it means that jdk is installed successfully

Summarize

The above is the tutorial on how to install JDK in Linux and set environment variables introduced by the editor. I hope it will be helpful to everyone!

You may also be interested in:
  • Linux jdk installation and environment variable configuration tutorial (jdk-8u144-linux-x64.tar.gz)
  • How to configure jdk environment under Linux
  • Detailed tutorial on installing JDK1.8 on Linux
  • Tutorial on installing jdk1.8 and configuring environment variables under Linux
  • Install JDK1.8 in Linux environment

<<:  MySQL calculates the number of days, months, and years between two dates

>>:  Detailed tutorial on downloading mysql on Windows 10

Recommend

MySQL password is correct but cannot log in locally -1045

MySQL password is correct but cannot log in local...

Detailed explanation of Svn one-click installation shell script under linxu

#!/bin/bash #Download SVN yum -y install subversi...

5 tips for writing CSS to make your style more standardized

1. Arrange CSS in alphabetical order Not in alphab...

A QQ chat room based on vue.js

Table of contents Introduction The following is a...

Detailed explanation of various ways to merge javascript objects

Table of contents Various ways to merge objects (...

Vue uses three methods to refresh the page

When we are writing projects, we often encounter ...

Detailed explanation of CSS animation attribute keyframes

How long has it been since I updated my column? H...

Some data processing methods that may be commonly used in JS

Table of contents DOM processing Arrays method Su...

Vue implements small search function

This article example shares the specific code of ...

Practical record of vue using echarts word cloud chart

echarts word cloud is an extension of echarts htt...

Summary of the use of Datetime and Timestamp in MySQL

Table of contents 1. How to represent the current...

MySQL database migration quickly exports and imports large amounts of data

Database migration is a problem we often encounte...

Docker setting windows storage path operation

When installing Docker on Windows 10, after selec...

How to set the memory size of Docker tomcat

When installing Tomcat in Docker, Tomcat may over...

Semanticization of HTML tags (including H5)

introduce HTML provides the contextual structure ...