如何使用awscli停止弹性缓存节点?

时间:2014-09-13 17:13:35

标签: amazon-web-services aws-cli

我是aws和弹性新手。我创建了一个用于测试的集群,但现在我想停止节点。

那么..我可以用awscli来阻止弹性缓存节点吗?如果是这样,怎么样?

2 个答案:

答案 0 :(得分:2)

我猜你想要' delete-cache-cluster:

http://docs.aws.amazon.com/cli/latest/reference/elasticache/index.html

aws elasticache delete-cache-cluster --cache-cluster-id <value>

答案 1 :(得分:0)

以下命令将为您提供所有节点:

aws elasticache describe-cache-clusters --cache-cluster-id $cacheClusterId  --show-cache-node-info  --query 'CacheClusters[*].CacheNodes[*].[Endpoint.Address]'  --output text --region us-east-1