PAS-C01 Design of SAP Workloads on AWS • Complete Question Bank
Complete PAS-C01 Design of SAP Workloads on AWS question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Amazon EC2 with HANA optimized instances
Application server layer
Next-generation ERP suite
Business intelligence platform
Drag a concept onto its matching description — or click a concept then click the description.
Benchmark unit for CPU capacity
Instance RAM size
EBS bandwidth or instance storage performance
Placement group or instance type network performance
Drag a concept onto its matching description — or click a concept then click the description.
Single small instance, no HA
Medium instances, minimal redundancy
Medium instances, some HA
Large instances, multi-AZ, HA and DR
Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::sap-backup-bucket/*"
},
{
"Effect": "Allow",
"Action": [
"ec2:CreateSnapshot",
"ec2:DescribeSnapshots"
],
"Resource": "*"
}
]
}Refer to the exhibit.
CloudFormation template snippet:
"SAPASCS": {
"Type": "AWS::EC2::Instance",
"Properties": {
"InstanceType": "m5.large",
"ImageId": "ami-0abcdef1234567890",
"NetworkInterfaces": [{
"DeviceIndex": "0",
"SubnetId": "subnet-12345678",
"AssociatePublicIpAddress": false,
"Groups": ["sg-12345678"]
}],
"BlockDeviceMappings": [{
"DeviceName": "/dev/sda1",
"Ebs": {
"VolumeSize": 50,
"VolumeType": "gp2"
}
}],
"Tags": [{"Key": "Name", "Value": "ASCS"}]
}
}Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:DescribeVolumes",
"ec2:CreateSnapshot"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource": "arn:aws:s3:::sap-backup-bucket/*"
}
]
}Refer to the exhibit.
[ec2-user@ip-10-0-1-10 ~]$ aws ec2 describe-volumes --volume-ids vol-0a1b2c3d4e5f6g7h8
{
"Volumes": [
{
"VolumeId": "vol-0a1b2c3d4e5f6g7h8",
"Size": 500,
"VolumeType": "gp3",
"Iops": 3000,
"Throughput": 125,
"State": "available",
"MultiAttachEnabled": false
}
]
}Refer to the exhibit.
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["ec2:Describe*"],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"ec2:StartInstances",
"ec2:StopInstances"
],
"Resource": "arn:aws:ec2:us-east-1:123456789012:instance/i-0abcd1234efgh5678"
}
]
}
```Refer to the exhibit.
```
{
"SAP HANA Backup Configuration": {
"Backint": {
"Bucket": "sap-hana-backup-prod",
"ParallelStreams": 4,
"ChunkSizeMB": 1024,
"Compression": "gzip",
"Encryption": "SSE-S3"
}
}
}
```Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:StartInstances",
"ec2:StopInstances",
"ec2:RebootInstances"
],
"Resource": "*",
"Condition": {
"StringEquals": {
"ec2:ResourceTag/SAPSystem": "${aws:username}"
}
}
}
]
}Refer to the exhibit. # /etc/fstab entry for HANA data volume UUID=abc123 /hana/data xfs defaults,noatime 0 0
Refer to the exhibit.
```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:StopInstances",
"ec2:StartInstances"
],
"Resource": "arn:aws:ec2:us-east-1:123456789012:instance/*",
"Condition": {
"StringEquals": {
"ec2:ResourceTag/Environment": "Production"
}
}
}
]
}
```Refer to the exhibit.
```
# CloudFormation template snippet
SAPASCS:
Type: AWS::EC2::Instance
Properties:
InstanceType: m5.large
ImageId: ami-0abcdef1234567890
SecurityGroupIds:
- !Ref ASCSSecurityGroup
UserData:
Fn::Base64: !Sub |
#!/bin/bash
yum update -y
# Install SAP prerequisites
Tags:
- Key: Name
Value: SAP-ASCS
- Key: sap-instance-type
Value: ASCS
```Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::sap-backup-bucket/*"
}
]
}Refer to the exhibit.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"SAPAppServer": {
"Type": "AWS::AutoScaling::AutoScalingGroup",
"Properties": {
"AvailabilityZones": ["us-east-1a", "us-east-1b"],
"LaunchConfigurationName": {"Ref": "LaunchConfig"},
"MinSize": "1",
"MaxSize": "5",
"DesiredCapacity": "2"
}
},
"LaunchConfig": {
"Type": "AWS::AutoScaling::LaunchConfiguration",
"Properties": {
"ImageId": "ami-0abcdef1234567890",
"InstanceType": "m5.large",
"SecurityGroups": [{"Ref": "SGSAP"}]
}
}
}
}Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:DescribeVolumes",
"ec2:CreateSnapshot",
"ec2:CreateTags"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": "arn:aws:s3:::sap-backup-bucket/*"
}
]
}Refer to the exhibit. [ec2-user@ip-10-0-0-10 ~]$ df -h /hana/data Filesystem Size Used Avail Use% Mounted on /dev/xvdf 500G 480G 20G 96% /hana/data
Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:StartInstances",
"ec2:StopInstances",
"ec2:CreateTags",
"ec2:DeleteTags"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"elasticloadbalancing:DescribeLoadBalancers",
"elasticloadbalancing:RegisterInstancesWithLoadBalancer",
"elasticloadbalancing:DeregisterInstancesFromLoadBalancer"
],
"Resource": "*"
}
]
}Refer to the exhibit.
ResourceRecordSet:
Name: sap.example.com.
Type: CNAME
TTL: 60
SetIdentifier: primary
Failover: PRIMARY
ResourceRecords:
- Value: primary-lb-1234567890.us-west-2.elb.amazonaws.com
HealthCheckId: abc-123
---
ResourceRecordSet:
Name: sap.example.com.
Type: CNAME
TTL: 60
SetIdentifier: secondary
Failover: SECONDARY
ResourceRecords:
- Value: secondary-lb-0987654321.us-west-2.elb.amazonaws.comRefer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:StartInstances",
"ec2:StopInstances",
"ec2:DescribeInstances"
],
"Resource": "arn:aws:ec2:us-east-1:123456789012:instance/*"
},
{
"Effect": "Allow",
"Action": [
"ec2:Describe*"
],
"Resource": "*"
}
]
}Refer to the exhibit.
{
"Rules": [
{
"SourceSecurityGroupId": "sg-12345",
"IpProtocol": "tcp",
"FromPort": 3300,
"ToPort": 3300
}
]
}{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject"],
"Resource": "arn:aws:s3:::sap-backup-bucket/*"
},
{
"Effect": "Deny",
"Action": "s3:DeleteObject",
"Resource": "arn:aws:s3:::sap-backup-bucket/*",
"Condition": {
"Bool": {
"aws:SecureTransport": "false"
}
}
}
]
}