Detailed tutorial on installing JDK8 on Linux system (CentOS7 installation)

Detailed tutorial on installing JDK8 on Linux system (CentOS7 installation)

JDK Installation

I won't go into too much detail about system installation. You can find the installation steps online. However, I recommend that you choose the desktop graphical format for installation to facilitate some operations. At the same time, choose English mode during the installation process. At the same time, I found that using the Oracle VM VirtualBox virtual machine tool is more convenient than using VM tools for development.

Use the tools

System: CentOS7_64 bit (recommended to use the minimum configuration command window)
Jdk: jdk1.8.0_191
Virtual Machine: Oracle VM VirtualBox
Document writing tool: EditPlus
File transfer tool: FileZilla
Connect to Linux system tool: Xshell5 (recommended, but use with caution, paid software)
Sunflower remote connection operation tool

File Path

Link: https://pan.baidu.com/s/1qu71DDVXvU3kBEg-cgBpKw

Extraction code: hn1u

1. Upload the jdk file (/develop/package)

2. Uninstall jdk (centOS will have its own jdk version)

1) Query all Java (If you use the minimum configuration command line, you can install it directly if you cannot find any Java)

rpm -qa | grep java

2) Delete the java files other than the three ones

rpm -e --nodeps java-1.7.0-openjdk-1.7.0.111-2.6.7.8.el7.x86_64
rpm -e --nodeps java-1.8.0-openjdk-1.8.0.102-4.b14.el7.x86_64
rpm -e --nodeps java-1.8.0-openjdk-headless-1.8.0.102-4.b14.el7.x86_64
rpm -e --nodeps java-1.7.0-openjdk-headless-1.7.0.111-2.6.7.8.el7.x86_64

3) After deleting, query using command

rpm -qa | grep java

3. Unzip JDK

tar -zxvf jdk-8u191-linux-x64.tar.gz -C ../

4. Configure environment variables (using EditPlus)

Open /etc/profile
Add the following code at the end #java environment
export JAVA_HOME=/develop/jdk1.8.0_191
export CLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_HOME/bin

5. Make the modified configuration take effect

source /etc/profile

6. Check whether the configuration is successful

java -version

javac

Summarize

The above is a detailed tutorial on how to install JDK8 on Linux system (CentOS7 installation) introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed tutorial on installing CentOS, JDK and Hadoop on VirtualBox
  • Linux system (Centos6.5 and above) installation jdk tutorial analysis
  • Graphical tutorial on installing JDK1.8 under CentOS7.4
  • Install JDK8 in rpm mode on CentOS7
  • CentOS8 installation tutorial of jdk8 / java8 (recommended)
  • Tutorial on deploying jdk and tomcat on centos7 without interface
  • Linux centOS installation JDK and Tomcat tutorial
  • Centos installation jdk case explanation

<<:  Vue3.0 handwriting magnifying glass effect

>>:  Detailed analysis of the MySQL slow log opening method and storage format

Recommend

Native js to achieve star twinkling effect

This article example shares the specific code of ...

MySQL Series 8 MySQL Server Variables

Tutorial Series MySQL series: Basic concepts of M...

Detailed explanation of two ways to dynamically change CSS styles in react

The first method: dynamically add a class to show...

Complete steps to set up automatic updates in CentOS 8

The best thing you can do for your data and compu...

How to install MySQL 8.0.13 in Alibaba Cloud CentOS 7

1. Download the MySQL installation package (there...

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

Summary of considerations for writing web front-end code

1. It is best to add a sentence like this before t...

Solution to 700% CPU usage of Linux process that cannot be killed

Table of contents 1. Problem Discovery 2. View de...

Analysis of the problem of deploying vue project and configuring proxy in Nginx

1. Install and start nginx # Install nginx sudo a...

Vue implements a simple shopping cart example

This article shares the specific code of Vue to i...

WeChat applet tab left and right sliding switch function implementation code

Effect picture: 1. Introduction Your own applet n...

Several practical scenarios for implementing the replace function in MySQL

REPLACE Syntax REPLACE(String,from_str,to_str) Th...

How to quickly insert 10 million records into MySQL

I heard that there is an interview question: How ...

5 Ways to Send Emails in Linux Command Line (Recommended)

When you need to create an email in a shell scrip...