您现在的位置是: 首页 > 运维 CentOS 安装JDK
CentOS 安装JDK
2020-05-19 【运维】 2222人已围观 4132次浏览
简介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 项目完整部署方案
站长推荐
猜你喜欢
- SpringBoot 启动提示 Requested bean is currently in creation: Is there an unresolvable circular reference?
- nuxt 项目完整部署方案
- Linux 服务器之间传输大文件(压缩文件、查看MD5、后台传输)
- LNMP定时备份任务教程(支持排除指定文件夹)
- Debian/Ubuntu无netstat命令解决方案
- springboot引入mybatis-plus后出现ClassNotFoundException: org.mybatis.logging.LoggerFactory
- PHP 中list()出现Undefined offset: 0错误
- linux下各文件夹的结构说明及用途介绍
- SpringBoot 定时任务 多线程
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作