Linux jdk installation and environment variable configuration tutorial (jdk-8u144-linux-x64.tar.gz)

Linux jdk installation and environment variable configuration tutorial (jdk-8u144-linux-x64.tar.gz)

It is recommended to use the sudo su command to switch to the root account first, otherwise you may not have permission to operate the /opt directory later.

1. Download and decompress

First go to the official website to download the compressed package jdk-8u144-linux-x64.tar.gz.

After downloading, enter cp jdk-8u144-linux-x64.tar.gz /opt in the terminal to copy the compressed package to the opt directory.
Then go to the opt directory and enter tar -zxvf jdk-8u144-linux-x64.tar.gz to decompress it.

2. Edit the profile file in the etc directory

sudo vi /etc/profile Use the vi command to edit the profile file in the /etc directory. Press i to enter the editing mode. Use the up, down, left, and right keys on the keyboard to move the cursor to the last line as shown in the figure. Add the following to the last line: export JAVA_HOME=/opt/jdk

insert image description here

Press the Esc key to exit edit mode and return to command line mode.
Enter :x to save and exit.

3. Create and edit the java.sh file in the etc/profile.d directory

cd /etc/profile.d Enter the directory
sudo vi java.sh Create the java.sh file and edit it (press i to enter the editing mode)

java.sh edit content:
(You need to write it according to the path here. First go to the opt directory and copy the unzipped path. The displayed path is /opt/jdk1.8.0_144 )

export JAVA_HOME=/opt/jdk1.8.0_144
export PATH=$PATH:/opt/jdk1.8.0_144/bin 

insert image description here

Enter :x to save and exit.

4. Source the global configuration file /etc/profile to check whether the configuration is successful

source /etc/profile global configuration file (if a normal user switches to the root user, enter this command and the previous configuration steps do not need to be repeated)

Use java -version to check whether the configuration is successful. If successful, the result is as shown below:

insert image description here

Summarize

This is the end of this article about Linux jdk installation and environment variable configuration tutorial (jdk-8u144-linux-x64.tar.gz). For more related Linux jdk installation and environment variable configuration (jdk-8u144-linux-x64.tar.gz) content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to install JDK and set environment variables in Linux (this article is enough)
  • 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

<<:  Cross-domain issues in front-end and back-end separation of Vue+SpringBoot

>>:  MYSQL master-slave replication knowledge points summary

Recommend

How to avoid duplication of data when inserting in MySql batch

Table of contents Preface 1. insert ignore into 2...

vue+springboot realizes login verification code

This article example shares the specific code of ...

Using Docker+jenkins+python3 environment to build a super detailed tutorial

Preface: After the automation is written, it need...

Web front-end skills summary (personal practical experience)

1. Today, when I was making a page, I encountered ...

GDB debugging MySQL actual combat source code compilation and installation

Download source code git clone https://github.com...

Vant+postcss-pxtorem implements browser adaptation function

Rem layout adaptation The styles in Vant use px a...

MySQL 5.6 root password modification tutorial

1. After installing MySQL 5.6, it cannot be enabl...

MySQL SQL statement to find duplicate data based on one or more fields

SQL finds all duplicate records in a table 1. The...

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

How to use CSS3 to implement a queue animation similar to online live broadcast

A friend in the group asked a question before, th...

Set an icon for the website to be displayed on the far left of the browser tab

What is the purpose of this sentence? Copy code Th...