mirror of
https://gitlab.com/ser-cal/m346.git
synced 2024-11-22 18:21:56 +01:00
KN07 Draft C
This commit is contained in:
parent
bc68acff22
commit
6014f77efc
@ -83,6 +83,16 @@ Zuerst muss ein sogenanntes **IAM Instance Profile** erstellt werden. Beim näch
|
|||||||
8. Bei **Advanced details** muss unter `IAM Instance profile` das oben (oder früher) erstellte Profil **S3ReadOnly** ausgewählt werden. Damit stellen Sie sicher, dass die Instanz bei der Installation auf den S3-Bucket zugreifen kann, wo das HTML Indexfile abgelegt ist.
|
8. Bei **Advanced details** muss unter `IAM Instance profile` das oben (oder früher) erstellte Profil **S3ReadOnly** ausgewählt werden. Damit stellen Sie sicher, dass die Instanz bei der Installation auf den S3-Bucket zugreifen kann, wo das HTML Indexfile abgelegt ist.
|
||||||
9. Ebenfalls bei **Advanced details** unter **user data** wird folgender Code eingetragen:
|
9. Ebenfalls bei **Advanced details** unter **user data** wird folgender Code eingetragen:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
#!/bin/bash
|
||||||
|
yum update -y
|
||||||
|
yum install -y httpd
|
||||||
|
systemctl start httpd
|
||||||
|
systemctl enable httpd
|
||||||
|
aws s3 cp s3://<Name S3-Bucket>/ami-test.txt /var/www/html/index.html
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
10. Starten Sie die Instanz mit **Launch instance**.
|
10. Starten Sie die Instanz mit **Launch instance**.
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user