如何在AWS Marketplace中查找CentOS 7镜像的AMI ID?

问题描述 投票:0回答:5

我一直通过登录 AWS 站点、点击“启动”按钮并按照规定的步骤启动 EC2 实例。现在我想从 Ansible 脚本启动实例,为此我(认为我)需要我希望启动的映像的 AMI ID。

问题是我正在从“Marketplace”启动图像,但找不到 AMI ID。特别是我使用的是 Centos 7 映像。这在 Web 界面中很容易找到,只需进入市场并搜索“centos”,我想要的图像是第一个找到的图像,但提供的有关该图像的信息似乎不包括我的 AMI ID需要从脚本启动它。解决方法是手动启动映像,然后在检查正在运行的映像时给出 AMI ID。但有没有更简单的方法来找到它?

amazon-web-services amazon-ec2 centos7 amazon-ami
5个回答
56
投票

CentOS 将其 AMI 产品代码发布到其 wiki。该 wiki 提供了最新 CentOS 7 AMI 的以下信息:

  • 楼主:
    aws-marketplace
  • 产品代码:
    aw0evgkw8e5c1q413zgy5pjce

使用此信息,我们可以使用 AWS CLI 查询 describe-images

示例:

aws ec2 describe-images \
    --owners 'aws-marketplace' \
    --filters 'Name=product-code,Values=aw0evgkw8e5c1q413zgy5pjce' \
    --query 'sort_by(Images, &CreationDate)[-1].[ImageId]' \
    --output 'text'

输出:

ami-6d1c2007

此查询返回单个 AMI ID,通过按创建日期对集合进行排序,然后选择集合中的最后一个(最新)元素来选择该 ID。

根据 CentOS wiki,

multiple AMI ids may be associated with a product key
,因此虽然此查询当前仅返回一个 AMI,因为当前仅存在一个与此产品匹配的 AMI...将来如果出于任何原因为此查询创建了此产品代码的新 AMI将返回它。


11
投票

查看此页面

AWS 一直在更改“aws market”UI。现在 (2022) 我们在 AWS Marketplace 本身的“配置此软件”页面中获取 ami id。

步骤:

  1. 搜索并找到图像。点击图片。
  2. 点击右上角“继续订阅”
  3. 在下一个窗口中,单击“继续配置”
  4. 在下一个窗口中,找到找到的 Ami ID。我们可以更改软件版本以获得不同的 ami Id。

9
投票

如果您正在寻找所有 Centos7 镜像

$ aws ec2 describe-images \
      --owners aws-marketplace \
      --filters Name=product-code,Values=aw0evgkw8e5c1q413zgy5pjce \
      --query 'Images[*].[CreationDate,Name,ImageId]' \
      --filters "Name=name,Values=CentOS Linux 7*" \
      --region us-west-2 \
      --output table \
  | sort -r
|  2018-06-13T15:58:14.000Z|  CentOS Linux 7 x86_64 HVM EBS ENA 1805_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-77ec9308.4  |  ami-3ecc8f46  |
|  2018-05-17T09:30:44.000Z|  CentOS Linux 7 x86_64 HVM EBS ENA 1804_2-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-55a2322a.4   |  ami-5490ed2c  |
|  2018-04-04T00:11:39.000Z|  CentOS Linux 7 x86_64 HVM EBS ENA 1803_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-8274d6ff.4  |  ami-0ebdd976  |
|  2017-12-05T14:49:18.000Z|  CentOS Linux 7 x86_64 HVM EBS 1708_11.01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-95096eef.4   |  ami-b63ae0ce  |

添加适用于 RedHat 的类似查询

aws ec2 describe-images \
    --owners 309956199498 \
    --query 'Images[*].[CreationDate,Name,ImageId]' \
    --filters "Name=name,Values=RHEL-7.?*GA*" \
    --region us-east-1 \
    --output table \
  | sort -r
|  2018-03-23T20:42:08.000Z |  RHEL-7.5_HVM_GA-20180322-x86_64-1-Hourly2-GP2  |  ami-6871a115 |
|  2017-08-08T15:37:31.000Z |  RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2  |  ami-c998b6b2 |
|  2017-07-24T15:44:39.000Z |  RHEL-7.4_HVM_GA-20170724-x86_64-1-Hourly2-GP2  |  ami-cdc999b6 |
|  2016-10-26T22:32:29.000Z |  RHEL-7.3_HVM_GA-20161026-x86_64-1-Hourly2-GP2  |  ami-b63769a1 |
|  2015-11-12T21:06:58.000Z |  RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2  |  ami-2051294a |
|  2015-02-25T20:24:23.000Z |  RHEL-7.1_HVM_GA-20150225-x86_64-1-Hourly2-GP2  |  ami-12663b7a |
|  2015-02-09T22:54:40.000Z |  RHEL-7.0_HVM_GA-20150209-x86_64-1-Hourly2-GP2  |  ami-60a1e808 |
|  2014-10-17T20:29:24.000Z |  RHEL-7.0_HVM_GA-20141017-x86_64-1-Hourly2-GP2  |  ami-a8d369c0 |
|  2014-05-28T19:17:11.000Z |  RHEL-7.0_GA_HVM-x86_64-3-Hourly2               
|  ami-785bae10 |

5
投票

我在这里使用了其他答案,这是在 Terraform 中测试 AMI 查找的好方法。

使用...

aws ec2 describe-images \
    --owners aws-marketplace \
    --filters '[
        {"Name": "name",                "Values": ["CentOS Linux 7*"]},
        {"Name": "virtualization-type", "Values": ["hvm"]},
        {"Name": "architecture",        "Values": ["x86_64"]},
        {"Name": "image-type",          "Values": ["machine"]}
    ]' \
    --query 'sort_by(Images, &CreationDate)[-1]' \
    --region us-east-1 \
    --output json

...让我有机会尝试并犯错我的查找

data "aws_ami" "centos" {
  most_recent = true
  owners      = ["aws-marketplace"]

  filter {
    name   = "virtualization-type"
    values = ["hvm"]
  }

  filter {
    name   = "architecture"
    values = ["x86_64"]
  }

  filter {
    name   = "image-type"
    values = ["machine"]
  }

  filter {
    name   = "name"
    values = ["CentOS Linux 7*"]
  }
}

resource "aws_launch_configuration" "launch_configuration" {
  name_prefix = "${var.name}-"

  image_id = "${data.aws_ami.centos.image_id}"
  instance_type        = "t2.nano"
  iam_instance_profile = "${aws_iam_instance_profile.instance_profile.name}"
  security_groups      = ["${aws_security_group.lc_security_group.id}"]

  user_data = "${data.template_file.user_data.rendered}"

  lifecycle {
    create_before_destroy = true
  }
}

0
投票

有可用的产品代码列表:

TOKEN=`curl -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 21600"` \
&& curl -H "X-aws-ec2-metadata-token: $TOKEN" http://169.254.169.254/latest/meta-data/product-codes

来源:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/get-product-code.html

© www.soinside.com 2019 - 2024. All rights reserved.