- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
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