Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Amazon 的 EC2 上运行的服务器很少,我想每周备份一次映像(创建 AMI)(替换旧映像)。有什么办法可以自动化吗?
您应该能够使用命令行工具来创建 ami。类似的东西ec2-create-image -n "<image name here>" <your instancId here>。把它放在每周安排的 cron 条目中,你就完成了。您应该能够使用此问题的答案以编程方式确定您的实例 ID 是什么。
ec2-create-image -n "<image name here>" <your instancId here>
您现在可以使用AWS Lambda 自动创建 AMI。整个设置应在大约 10 分钟内完成,并按照您喜欢的时间表进行。