Home  >  Article  >  Java  >  How to update java version under linux

How to update java version under linux

王林
王林Original
2019-11-18 16:08:016862browse

How to update java version under linux

First use the command to check the location of java

whereis java //查看jdk安装路径
which java // 查看java执行路径

How to update java version under linux

Then delete the corresponding old java, as shown in the figure:

rm -rf jdk1.8.0_211/

How to update java version under linux

Next check the version corresponding to your system, and then download the corresponding JAVA package

How to update java version under linux

Upload the downloaded Java compressed package Go to the corresponding directory and unzip

How to update java version under linux

## After installing it in the same location/opt, open /etc/profile to modify the configuration, as shown in the figure:

How to update java version under linux

How to update java version under linux

Then use the following command:

 soruce /etc/profile.

Or restart the computer, and then check

 java --version

and check the java method, just You can see that the new java is installed

How to update java version under linux

Recommended tutorial:

Java tutorial

The above is the detailed content of How to update java version under linux. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn