我想对实例关联的EBS卷进行定期的自动快照.我只需要保留一个最新的备份(即旧的快照应该被修剪),并且一个好的频率将是每天一次.
亚马逊似乎没有提供开箱即用的备份服务,因此您必须使用第三方脚本或推出自己的解决方案.
我的问题是,实现这一目标的最简单方法是什么?我想要最少量的麻烦,配置和外部依赖.据我所知,将此设置为linux机箱上的某种定时脚本是一个有效的选项.
解决方法 基于Jonik的概念,我使用boto创建了一个python脚本.您可以为快照提供卷列表,以及为每个卷保留多少尾随快照:# define the snapshots manage. We'll snapshot the specifIEd volume ID,and only keep the X newest ones.snapshots = [("vol-XXXXXXXX",30),("vol-YYYYYYYY",180)]import boto.ec2auth = {"aws_access_key_ID": "YOURACCESSKEY","aws_secret_access_key": "YOURSECRETKEY"}ec2 = boto.ec2.connect_to_region("YOURREGIONname",**auth)description = "automated backup"for volume,num_trailing in snapshots: snaps = ec2.get_all_snapshots(filters={"volume-ID": volume,"description": description}) print "%s: Creating new snapshot. %s automated snapshots currently exist." % (volume,len(snaps)) ec2.create_snapshot(volume,description) purgeable = sorted(snaps,key=lambda x: x.start_time)[:-num_trailing] print "Deleting snapshots for %s > %s: %s" % (volume,num_trailing,purgeable) for snap in purgeable: ec2.delete_snapshot(snap.ID)
我将其设置为Jenkins作业(通过Python插件),配置为每天运行.如果您使用IAM来管理凭据,请注意这将需要ec2策略:DescribeRegions,DescribeVolumes,CreateSnapshot,DeleteSnapshot,DescribeSnapshots,CreateTags(因为boto的实现).
总结以上是内存溢出为你收集整理的linux – 运行Ubuntu的EBS支持的EC2实例的自动快照全部内容,希望文章能够帮你解决linux – 运行Ubuntu的EBS支持的EC2实例的自动快照所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)