EC2 원격접속 - SSH 연결(Linux 인스턴스)

스크린샷 2024-03-03 오전 11.07.42.png

EC2 원격접속 - Instance Connect 연결(Linux 인스턴스)

EC2 Linux 인스턴스 웹서버 생성 실습

yum update -y
yum install httpd -y
service httpd start
chkconfig httpd on
cd /var/www/html
echo "Hello AWS EC2. $(hostname -f)" > index.html