- 重要な情報
- はじめに
- 用語集
- エージェント
- インテグレーション
- OpenTelemetry
- 開発者
- API
- CoScreen
- アプリ内
- インフラストラクチャー
- アプリケーションパフォーマンス
- 継続的インテグレーション
- ログ管理
- セキュリティ
- UX モニタリング
- 管理
Confirm Redshift clusters are not using default port 5439 to protect against non-targeted attacks.
Using a custom port can protect your publicly accessible AWS Redshift clusters against potential brute-force and dictionary attacks. Although setting a custom port can help fend off these attacks, it is also recommended to restrict public access, use SSL to encrypt client connections to database clusters, and control cluster access through security groups and Network Access Control Lists (NACLs) to add an additional layer of security for your account.
Follow the [Getting information about cluster configuration][7] docs to access your cluster configuration information. If the cluster has a port 5439, it is the default port. Modify the port number in the console.
Run describe-clusters
with a cluster-identifier
to retrieve cluster metadata.
describe-clusters.sh
aws redshift describe-clusters
--cluster-identifier cluster-name
Run create-cluster-snapshot
with create a snapshot of your database cluster.
create-cluster-snapshot.sh
aws redshift create-cluster-snapshot
--cluster-identifier cluster-name
--snapshot-identifier snapshot-identifier
Run restore-from-cluster-snapshot
to create a new cluster from the snapshot created above. Use the retrieved metadata in step one to configure a new port number.
restore-from-cluster-snapshot.sh
aws redshift restore-from-cluster-snapshot
...
--cluster-identifier cluster-name
--snapshot-identifier snapshot-identifier
--port 2000