2024.07 - 동국대 특강

Agenda

1일차

2일차

Q&A

https://app.sli.do/event/bCA74UFyYXQfBEtJwiB7zc

기타 자료

확장 가능한 애플리케이션 배포 실습 스크립트

#!/bin/bash -xe
yum -y update
yum -y install httpd
amazon-linux-extras install php7.2
yum -y install php-mbstring
yum -y install telnet
case $(ps -p 1 -o comm | tail -1) in
systemd) systemctl enable --now httpd ;;
init) chkconfig httpd on; service httpd start ;;
*) echo "Error starting httpd (OS not using init or systemd)." 2>&1
esac
cd /var/www/html
wget https://ws-assets-prod-iad-r-icn-ced060f0d38bc0b0.s3.ap-northeast-2.amazonaws.com/f3a3e2bd-e1d5-49de-b8e6-dac361842e76/ec2-web-host.tar
tar xvf ec2-web-host.tar

Last updated