SysOps Administrator Associate 試験範囲と対策
SysOps Administrator Associate 試験範囲と対策
Section titled “SysOps Administrator Associate 試験範囲と対策”1. モニタリングとレポート(20%)
Section titled “1. モニタリングとレポート(20%)”主要トピック:
- CloudWatchメトリクスとアラーム
- CloudWatch Logs
- CloudTrail
- コスト管理
よく出る問題:
# CloudWatchアラームの設定Alarm: Type: AWS::CloudWatch::Alarm Properties: AlarmName: HighCPUUtilization ComparisonOperator: GreaterThanThreshold EvaluationPeriods: 2 MetricName: CPUUtilization Namespace: AWS/EC2 Period: 300 Statistic: Average Threshold: 80 AlarmActions: - !Ref SNSTopic - !Ref AutoScalingPolicy2. 高可用性(24%)
Section titled “2. 高可用性(24%)”主要トピック:
- マルチAZ配置
- オートスケーリング
- ELB
- Route 53
よく出る問題:
# オートスケーリング設定AutoScalingGroup: Type: AWS::AutoScaling::AutoScalingGroup Properties: MinSize: 2 MaxSize: 10 DesiredCapacity: 2 HealthCheckType: ELB HealthCheckGracePeriod: 300 VPCZoneIdentifier: - !Ref Subnet1 - !Ref Subnet23. デプロイとプロビジョニング(24%)
Section titled “3. デプロイとプロビジョニング(24%)”主要トピック:
- CloudFormation
- Elastic Beanstalk
- OpsWorks
- Systems Manager
よく出る問題:
# CloudFormationスタックの作成Stack: Type: AWS::CloudFormation::Stack Properties: TemplateURL: https://s3.amazonaws.com/bucket/template.yaml Parameters: InstanceType: t3.medium KeyName: my-key4. セキュリティとコンプライアンス(18%)
Section titled “4. セキュリティとコンプライアンス(18%)”主要トピック:
- IAM
- VPCセキュリティ
- 暗号化
- コンプライアンス
よく出る問題:
# IAMロールの設定Role: Type: AWS::IAM::Role Properties: AssumeRolePolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Principal: Service: ec2.amazonaws.com Action: sts:AssumeRole ManagedPolicyArns: - arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess5. ネットワーキング(14%)
Section titled “5. ネットワーキング(14%)”主要トピック:
- VPC
- サブネット
- ルートテーブル
- VPN
よく出る問題:
# VPCエンドポイントの設定VPCEndpoint: Type: AWS::EC2::VPCEndpoint Properties: VpcId: !Ref VPC ServiceName: com.amazonaws.region.s3 VpcEndpointType: Gateway RouteTableIds: - !Ref RouteTable1. CloudWatchの実践
Section titled “1. CloudWatchの実践”# CloudWatchメトリクスの確認aws cloudwatch get-metric-statistics \ --namespace AWS/EC2 \ --metric-name CPUUtilization \ --dimensions Name=InstanceId,Value=i-1234567890abcdef0 \ --start-time 2024-01-01T00:00:00Z \ --end-time 2024-01-01T23:59:59Z \ --period 3600 \ --statistics Average2. オートスケーリングの実践
Section titled “2. オートスケーリングの実践”# オートスケーリンググループの作成aws autoscaling create-auto-scaling-group \ --auto-scaling-group-name my-asg \ --min-size 2 \ --max-size 10 \ --desired-capacity 2 \ --launch-template LaunchTemplateName=my-template,Version='$Latest' \ --vpc-zone-identifier subnet-12345,subnet-67890SysOps Administrator Associate試験のポイント:
- 運用: 日常的な運用タスクの理解
- モニタリング: CloudWatchの活用
- 自動化: CloudFormation、Systems Manager
- セキュリティ: IAM、VPCセキュリティ
- トラブルシューティング: 問題の特定と解決
実務での運用経験が重要です。