如何使用用户数据在 EC2 中安装 Java。

huangapple go评论70阅读模式
英文:

How to install Java in EC2 using userdata

问题

我必须在我的EC2实例上使用用户数据安装Java,我在启动实例时在我的用户数据中提供了以下命令,但是它的效果不如预期。

#!bin/bash

yum update -y

yum install java -y

如果我在我的EC2实例中手动执行上述命令,它会正确安装。但是如果在用户数据中执行相同的命令,它就无法安装。

英文:

I have to install Java in my EC2 using user data I am giving below command in my user data while launching instance but its not working as expected.

#!bin/bash

yum update -y

yum install java -y

If I give above command manually in my EC2 its getting installed properly. But while giving the same in User-Data its not getting installed.

答案1

得分: 1

我使用 Red Hat Enterprise Linux 8 创建了 EC2,想要安装 Java,看起来我们需要使用以下命令。

yum install java-1.8.0-openjdk -y

英文:

I created EC2 using Red Hat Enterprise Linux 8 to install Java looks like we have to use below command.

yum install java-1.8.0-openjdk -y

huangapple
  • 本文由 发表于 2020年7月28日 23:53:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/63138124.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定