1 #!/bin/bash yum -y install httpd systemctl enable httpd systemctl start httpd echo '

AWS Web Server!

' > /var/www/html/index.html dnf install mariadb105 -y 2 MAC에서는 터미널 사용 (aws-bts-web02) $ cd ~/Downloads $ pwd /Users/topasvga/Downloads $ chmod 400 aws-bts-web02.pem $ ssh -i aws-bts-web02.pem ec2-user@3.39.58.228 Are you sure you want to continue connecting (yes/no/[fingerprint])? yes [ec2-user@ip-172-31-40-139 ~]$ sudo su - =루트 계정(관리자 계정) 으로 변경, 서버에 프로그램을 설치할수 있는 권한으로 변경 3 cd /var/www/html/ # chatgpt에게 학교 홈페이지 만들어줘. index.html로 만들어줘, cat으로 만들어줘