- 重要な情報
- はじめに
- 用語集
- ガイド
- エージェント
- インテグレーション
- OpenTelemetry
- 開発者
- API
- CoScreen
- アプリ内
- Service Management
- インフラストラクチャー
- アプリケーションパフォーマンス
- 継続的インテグレーション
- ログ管理
- セキュリティ
- UX モニタリング
- 管理
Change your AWS ElastiCache cluster endpoint port to a non-default port.
Using the default port puts clusters at risk of exploits and attacks. Configure a custom port to add an extra layer of security to your clusters.
Follow the Finding connection endpoints console documentation to learn how to find and modify your cluster’s endpoint port.
aws elasticache describe-cache-clusters
with your ElastiCache cluster ID to output the existing cluster configuration.describe-cache-clusters.sh
aws elasticache describe-cache-clusters
--cache-cluster-id your-cc-id
aws elasticache create-cache-cluster
with the cluster data returned in the previous step. Configure the new cache cluster with a custom value for the endpoint port. This returns new cluster metadata.create-cache-cluster.sh
aws elasticache create-cache-cluster
--cache-cluster-id new-cc-id
...
--port 10001
delete-cache-cluster
with the original cluster ID.delete-cache-cluster.sh
aws elasticache delete-cache-cluster
--cache-cluster-id your-cc-id