您现在的位置是: 首页 > 运维 CentOS 安装JDK
CentOS 安装JDK
2020-05-19 【运维】 1589人已围观 2585次浏览
简介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
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- Debian apt 使用国内镜像
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- nuxt 项目完整部署方案
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
站长推荐
猜你喜欢
- Linux 常用命令 持续更新中...
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- SqlServer 查询包含指定字段的存储过程
- start.spring.io访问太慢,构建SpringBoot项目失败
- PHP 中list()出现Undefined offset: 0错误
- 迁移 Docker 目录
- Mac 设置允许任何来源
- 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
- SpringBoot 启动提示 Requested bean is currently in creation: Is there an unresolvable circular reference?
- 在使用Flutter进行网络请求时,使用Dio访问https地址出现unable to get local issuer certificate错误