AWS sap documentation change
Summary
Updated documentation formatting, placeholder syntax, command indentation, and corrected markdown. Adjusted AWS CLI command examples to use angle brackets for placeholders, fixed code block formatting, removed redundant lines, and updated links.
Security assessment
Changes are primarily stylistic (placeholder syntax, code formatting, markdown corrections) and do not address security vulnerabilities or introduce security-specific content. No evidence of patching vulnerabilities, hardening guidance, or security incident responses. Example changes like --key-name=<name> or security-group-ids=<id> are standard documentation practices without security implications.
Diff
diff --git a/sap/latest/sap-businessobjects/bobi-linux-deployment.md b/sap/latest/sap-businessobjects/bobi-linux-deployment.md index 3737960f6..98e0d27ca 100644 --- a//sap/latest/sap-businessobjects/bobi-linux-deployment.md +++ b//sap/latest/sap-businessobjects/bobi-linux-deployment.md @@ -77,6 +74,6 @@ Launch the Amazon EC2 instance for the SAP BOBI Platform installation in your ta - --image-id AMI-ID \ - --count number-of-EC2-instances \ - --instance-type instance-type \ - --key-name=name-of-key-pair \ - --security-group-ids security-group-ID \ - --subnet-id subnet-ID \ + --image-id <AMI-ID> \ + --count <number-of-EC2-instances> \ + --instance-type <instance-type> \ + --key-name=<name-of-key-pair> \ + --security-group-ids <security-group-ID> \ + --subnet-id <subnet-ID> \ @@ -84,2 +81 @@ Launch the Amazon EC2 instance for the SAP BOBI Platform installation in your ta - --region region-ID - + --region <region-ID> @@ -92 +88 @@ When using the command, make sure to place the command and its parameters on a s - aws ec2 run-instances --image-id ami-xxxxxxxxxxxxxxx --count 1 \ + aws ec2 run-instances --image-id <ami-xxxxxxxxxxxxxxx> --count 1 \ @@ -94 +90 @@ When using the command, make sure to place the command and its parameters on a s - sg-xxxxxxxx --subnet-id subnet-xxxxxx \ + <sg-xxxxxxxx> --subnet-id <subnet-xxxxxx> \ @@ -139 +134 @@ To remove a package: `yum remove package-name` - # zypper install nfs-utils + zypper install nfs-utils @@ -143 +138 @@ To remove a package: `yum remove package-name` - # yum install nfs-utils + yum install nfs-utils @@ -151,5 +146,4 @@ To remove a package: `yum remove package-name` - #cd /tmp - # wget https://s3.amazonaws.com/aws-data-provider/bin/aws-agent_install.sh - # chmod ugo+x aws-agent_install.sh - # sudo ./aws-agent_install.sh - + cd /tmp + wget https://s3.amazonaws.com/aws-data-provider/bin/aws-agent_install.sh + chmod ugo+x aws-agent_install.sh + sudo ./aws-agent_install.sh @@ -162 +156 @@ To remove a package: `yum remove package-name` -On [Nitro-based](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances) instances, the device name specified in the block device mapping (Step #2) are renamed as `/dev/nvme[0-26]n`. Before you proceed with the next step, ensure that you are using the appropriate device name to create a file system. +On [Nitro-based](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances) instances, the device name specified in the block device mapping (Step 2) are renamed as `/dev/nvme[0-26]n`. Before you proceed with the next step, ensure that you are using the appropriate device name to create a file system. @@ -169 +163 @@ To view the list of volumes attached to your instance and their device names, ru - # lsblk + lsblk @@ -175,2 +168,0 @@ To view the list of volumes attached to your instance and their device names, ru - # - @@ -181 +173 @@ Format the block device for `/usr/sap`, swap and other file systems that are nee - # mkfs.xfs -f /dev/nvme1n1 -L USR_SAP + mkfs.xfs -f /dev/nvme1n1 -L USR_SAP @@ -192 +184 @@ As root user, create the directories to mount the file systems required for SAP - # mkdir /usr/sap + mkdir /usr/sap @@ -199 +191 @@ Add the entries for local SAP file systems to the `/etc/fstab` file by using the - # echo "/dev/disk/by-label/USR_SAP /usr/sap xfs nobarrier,noatime,nodiratime,logbsize=256k 0 0" >> /etc/fstab + echo "/dev/disk/by-label/USR_SAP /usr/sap xfs nobarrier,noatime,nodiratime,logbsize=256k 0 0" >> /etc/fstab @@ -204,2 +196,2 @@ To mount the file system that has been added to `/etc/fstab`, use the syntax `mo - # mount -a - # df -h + mount -a + df -h @@ -214,2 +205,0 @@ To mount the file system that has been added to `/etc/fstab`, use the syntax `mo - # - @@ -226 +216 @@ To allocate swap on device `/dev/nvme2n1`, use the following commands: - # lsblk + lsblk @@ -232,2 +222,2 @@ To allocate swap on device `/dev/nvme2n1`, use the following commands: - # - # mkswap -f /dev/nvme2n1 -L SWAP + + mkswap -f /dev/nvme2n1 -L SWAP @@ -236,2 +226,2 @@ To allocate swap on device `/dev/nvme2n1`, use the following commands: - # swapon -L SWAP - # swapon -s + swapon -L SWAP + swapon -s @@ -240,2 +229,0 @@ To allocate swap on device `/dev/nvme2n1`, use the following commands: - # - @@ -351,5 +335,5 @@ Alternatively, you can also use the IpAddress from step 11. In this example, we - # mkdir /test - # sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 <ip-address>:/ /test - # cd /test - # mkdir FileStore - # ls -ltr + mkdir /test + sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 <ip-address>:/ /test + cd /test + mkdir FileStore + ls -ltr @@ -357,3 +341,2 @@ Alternatively, you can also use the IpAddress from step 11. In this example, we - # cd / - # umount /test - + cd / + umount /test @@ -363 +346 @@ Alternatively, you can also use the IpAddress from step 11. In this example, we - # mkdir /prdbobi_fs + mkdir /prdbobi_fs @@ -367 +350 @@ Alternatively, you can also use the IpAddress from step 11. In this example, we - # sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 <ip-address>:/TRANS /usr/sap/trans + sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 <ip-address>:/TRANS /usr/sap/trans @@ -371,2 +354,2 @@ This IP address can be found in step 7. For example: - # sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 x.x.x.x:/TRANS /usr/sap/trans - # sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 x.x.x.x:/TRANS /usr/sap/trans + sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 x.x.x.x:/TRANS /usr/sap/trans + sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 x.x.x.x:/TRANS /usr/sap/trans @@ -385 +368 @@ This option is applicable only when Amazon RDS MySQL is used for the CMS databas - 3. Choose a supported DB version based on [SAP Note 1656099 - SAP on AWS: Supported SAP, DB/OS and Amazon EC2 products](https://launchpad.support.sap.com/#/notes/1656099), and select the instance type and storage based on your sizing output. + 3. Choose a supported DB version based on [SAP Note 1656099 - SAP on AWS: Supported SAP](https://launchpad.support.sap.com/#/notes/1656099), and select the instance type and storage based on your sizing output. @@ -425,2 +407,0 @@ Figure 3 is an example input for CMS database information for Linux installation - - @@ -428,0 +410,2 @@ Figure 3 is an example input for CMS database information for Linux installation + + @@ -431 +414 @@ This completes the installation of SAP BOBI Platform. -## Step 9\. Configure End User Access for Multi-Node Deployment +## Step 9. Configure End User Access for Multi-Node Deployment @@ -451 +434 @@ Application Load Balancer cannot route fields with special characters (such as, - 7. (Optional) Create a CNAME in Amazon Route 53 for the Application Load Balancer DNS name. Use this CNAME to access SAP BOBI Platform. + 7. (Optional) Create a `CNAME` in Amazon Route 53 for the Application Load Balancer DNS name. Use this `CNAME` to access SAP BOBI Platform.