【问题标题】:How do I create an EC2 image from a running instance using boto?如何使用 boto 从正在运行的实例创建 EC2 映像?
【发布时间】:2011-07-12 12:23:19
【问题描述】:

我正在尝试为我的 EC2 实例创建一个简单的 python 备份脚本。该脚本的目的是创建当前机器的每日/每周快照(参见this question on ServerFault)。我正在为 EC2 API 使用 boto python 包,并希望从给定实例创建 EBS AMI(如 ElasticFox 的“创建图像”操作)

# This script will look up all your running EC2 images, find the current one, and back it up by creating an AMI 

# Configuration
accessKeyId = "..."
accessKeySecret = "..."
target = "..."

def resolveIp(target):
    import socket
    ip = repr(socket.gethostbyname_ex(target)[2][0])
    return ip

def find_target(target, connection) :
    ip = resolveIp(target)
    print "Finding instance for " + target + " (IP " + ip + ")"
    reservations = connection.get_all_instances();
    for reservation in reservations:
        instances = reservation.instances
        if len(instances) != 1:
            print "Skipping reservation " + reservation
            continue
        instance = instances[0]
        instanceIp = resolveIp(instance.dns_name)
        if instanceIp == ip:
            return instance

    raise Exception("Can't find instance with IP " + ip)

from boto.ec2.connection import EC2Connection

print "Connecting to EC2"
conn = EC2Connection(accessKeyId, accessKeySecret)
print "Connected to EC2"

instance = find_target(target, conn)
print "Backing up instance '{}'".format(instance)

# Now, I'd like to create a new image out of this instance
# Can you help?

(也报告为an issue on the boto project page,因为我没有找到邮件列表)

【问题讨论】:

    标签: python amazon-ec2 boto


    【解决方案1】:

    您需要 EC2Connection 对象的“create_image”方法。请参阅文档here。您也可以在boto-users Google Group 上提问。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2015-05-16
      • 1970-01-01
      • 1970-01-01
      • 2013-10-23
      • 2015-09-26
      • 2015-08-16
      • 2011-12-25
      相关资源
      最近更新 更多