测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Java----基于CentOS安装 Java 语言开发环境
收藏本文
作者:redrose2100 类别: 日期:2023-12-17 16:38:26 阅读:944 次 消耗积分:0 分
[TOC] ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/a4afa2da-d653-11ee-ac12-0242ac110004.png) # 一、基于 CentOS7 系统安装配置 JDK8 (1)下载jdk安装包 打开 [jdk下载地址](https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html),找到linux下64位的安装包,点击下载(注意此步骤需要注册Oracle账号并登录 (2)、将安装包上传至服务器,然后解压 ```bash tar -zxvf jdk-8u331-linux-x64.tar.gz ``` (3)将解压文件夹移动至 /usr/local/目录下 ```bash mv jdk1.8.0_331 /usr/local/ ``` (4)、配置环境变量 ```bash vi /etc/profile ``` 在文件末尾增加以下内容 ```bash export JAVA_HOME=/usr/local/jdk1.8.0_331 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib ``` (5)、使环境变量生效 ```bash source /etc/profile ``` (6)查看java版本号 ```bash [root@iZbp1flzt6x7pxmxfhmxeeZ pkg]# java -version java version "1.8.0_331" Java(TM) SE Runtime Environment (build 1.8.0_331-b09) Java HotSpot(TM) 64-Bit Server VM (build 25.331-b09, mixed mode) [root@iZbp1flzt6x7pxmxfhmxeeZ pkg]# ``` (7)执行javac,如下表示环境配置已经配置OK ```bash [root@iZbp1flzt6x7pxmxfhmxeeZ pkg]# javac Usage: javac
where possible options include: -g Generate all debugging info -g:none Generate no debugging info -g:{lines,vars,source} Generate only some debugging info -nowarn Generate no warnings -verbose Output messages about what the compiler is doing -deprecation Output source locations where deprecated APIs are used -classpath
Specify where to find user class files and annotation processors -cp
Specify where to find user class files and annotation processors -sourcepath
Specify where to find input source files -bootclasspath
Override location of bootstrap class files -extdirs
Override location of installed extensions -endorseddirs
Override location of endorsed standards path -proc:{none,only} Control whether annotation processing and/or compilation is done. -processor
[,
,
...] Names of the annotation processors to run; bypasses default discovery process -processorpath
Specify where to find annotation processors -parameters Generate metadata for reflection on method parameters -d
Specify where to place generated class files -s
Specify where to place generated source files -h
Specify where to place generated native header files -implicit:{none,class} Specify whether or not to generate class files for implicitly referenced files -encoding
Specify character encoding used by source files -source
Provide source compatibility with specified release -target
Generate class files for specific VM version -profile
Check that API used is available in the specified profile -version Version information -help Print a synopsis of standard options -Akey[=value] Options to pass to annotation processors -X Print a synopsis of nonstandard options -J
Pass
directly to the runtime system -Werror Terminate compilation if warnings occur @
Read options and filenames from file [root@iZbp1flzt6x7pxmxfhmxeeZ pkg]# ``` # 二、基于CentOS7 安装 openjdk 17 (1) 下载openjdk 17的安装包 ```bash wget https://download.java.net/java/GA/jdk17/0d483333a00540d886896bac774ff48b/35/GPL/openjdk-17_linux-x64_bin.tar.gz ``` (2)解压文件并移动到 /usr/local/ 目录下 ```bash tar -zxvf openjdk-17_linux-x64_bin.tar.gz mv jdk-17 /usr/local/ ``` (3)vi /etc/profile 文件,在末尾增加如下内容: ```bash export JAVA_HOME=/usr/local/jdk-17/ export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib ``` (4)查看java的版本,如下所示表示安装配置成功 ```bash [root@redrose2100 opt]# java -version openjdk version "17" 2021-09-14 OpenJDK Runtime Environment (build 17+35-2724) OpenJDK 64-Bit Server VM (build 17+35-2724, mixed mode, sharing) ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/762
上一篇:
VMware----基于 VMware 玩转 CentOS 虚拟机创建、克隆以及配置后台运行
下一篇:
Git----学习Git第一步基于 Windows 10 系统和 CentOS7 系统安装 Git
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件