1
소프트웨어 포함 이미지로 서버 생성
APM 이미지로 만들자~
2
사용자 스크립트를 만들어 적용하며 서버 생성하자.
서버 생성시 APM 서버로 생성한 부분이 먼저 적용된다.
#!/bin/bash
yum -y install httpd
systemctl enable httpd
systemctl start httpd
echo '<html><h1>Hello From Your Web Server!</h1></html>' > /var/www/html/index.html
3
주기적으로 이미지 백업 하자.
4
주의
스넵샷을 뜬 서버는 이미지 백업을 할수 없다.
https://brunch.co.kr/@topasvga/3260
감사합니다.