您现在的位置是: 首页 > 运维 CentOS 安装JDK
CentOS 安装JDK
2020-05-19 【运维】 2812人已围观 4940次浏览
简介CentOS 安装JDK
首先下载JDK_1.8
也可以通过wget方式,直接在服务器上下载(但是由于下载页面授权问题,会导致下载到的就是一个几KB的页面文件)
下载完成后,解压
tar -zxvf jdk-8u211-linux-x64.tar.gz
然后移动到指定的目录,比如/opt
mv jdk1.8.0_211 /opt
修改配置文件
vim /etc/profile
如果没有 vim 执行
yum -y install vim
然后在文件头部新增
export JAVA_HOME=/opt/jdk1.8.0_211
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH
wq保存退出
然后让配置文件立即生效
source /etc/profile
最终验证是否安装成功,执行
java -version
或
java
或
javac
出现Java版本或提示信息,则安装成功
很赞哦! (0)
下一篇:Linux 安装 Tengine
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Mac降温软件推荐smcFanControl
- SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
- 【代码片段】MySQL新建表添加基础字段
- nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
- Win10 安装适用于Linux的Windows子系统
- LNMP定时备份任务教程(支持排除指定文件夹)
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- Vue 监听回车 el-input 和 input 使用方法不同
- Mac 设置允许任何来源
- RocketMQ 出现 sendDefaultImpl call timeout 问题