如何从命令行终止所有 EC2 实例?
如何从命令行杀死所有实例? 是否有相关命令或者我必须编写脚本?
How can I kill all my instances from the command line? Is there a command for this or must I script it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是一个老问题,但我想分享一个 AWS CLI 的解决方案:
相关信息:
如果黑客已禁用意外实例终止,请首先运行以下命令:
This is an old question but thought I'd share a solution for AWS CLI:
Related info:
If hackers have disabled accidental instance termination, first run this command:
AWS 控制台 和 Elasticfox 使其变得非常简单。
使用 EC2 API 工具可以一行实现命令行解决方案:
AWS Console and Elasticfox make it pretty easy.
A command-line solution can be achieved in one-line using the EC2 API tools:
据我所知,ec2-terminate-instances 命令没有“all”开关。 所以你可能需要编写脚本。 这不会那么难。 您只需要生成一个以逗号分隔的实例列表。
这是我正在使用的 python 脚本:
它使用 boto 库。 这对于特定任务来说并不是必需的(一个简单的 shell 脚本就足够了),但它在许多场合可能很方便。
最后您知道 Firefox 的 Elasticfox 扩展了吗? 这是迄今为止访问 EC2 最简单的方法。
As far as I know there isn't an 'all' switch for the ec2-terminate-instances command. So you probably need to script it. It won't be that hard. You only need to generate a comma separated list of your instances.
This is a python script I am using:
It uses boto library. This is not necessary for the specific task (a simple shell script will be enough), but it may be handy in many occasions.
Finally are you aware of Elasticfox extension for Firefox? This is by far the easiest way to access EC2.
这是使用 boto3 的更新答案:
import boto3
python终止_ec2_instances.py
(或者无论您的文件被命名为什么。
Here is an updated answer using boto3:
import boto3
python terminate_ec2_instances.py
(or whatever your file is named.
为了完整性。
这是另一种方法,通过使用正则表达式和 aws cli,更符合程序员的技能:
For completeness sake.
Here's another way, being more in line with the repertoire of a programmer, by using regular expressions and the aws cli:
它的核心不是我的,但我必须进行修改以使其删除所有区域中的所有实例。 这是使用 aws cli install 在 powershell 中运行的:
foreach ($regionID in (aws ec2 describe-regions --query "Regions[].{Name:RegionName}" --output text)){foreach ($id in (aws ec2 描述实例 --filters --query "Reservations[].Instances[].[InstanceId]" --output text --region $regionID)) { aws ec2 Terminate-instances --instance-ids $id --region $regionID}}
这会列出 AWS 中的所有区域,然后在这些区域上运行 foreach。
在区域 foreach 中,它列出该区域中的所有实例,然后在实例上运行 foreach。
在实例 foreach 中,它终止实例。
这是在我的亚马逊帐户被黑客攻击并且他们设置了 10,000 个需要删除的 ec2 实例之后需要的。
The core of this wasn't mine, but I had to make modifications to make it delete all instances in all regions. This was run in powershell using the aws cli install:
foreach ($regionID in (aws ec2 describe-regions --query "Regions[].{Name:RegionName}" --output text)){foreach ($id in (aws ec2 describe-instances --filters --query "Reservations[].Instances[].[InstanceId]" --output text --region $regionID)) { aws ec2 terminate-instances --instance-ids $id --region $regionID}}
This lists all the regions in AWS, then runs a foreach on the regions.
In the regions foreach it lists all the instances in the region, then runs a foreach on the instances.
In the instances foreach it terminates the instance.
This was needed after my amazon account got hacked and they setup 10,000 instances of ec2 that needed deleting.