Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ssh key 배포
- PlayBook
- ansible
- pfsense
- ELASTIC
- endpoint security
- GitLab
- 로그인불가
- Elasticsearch
- Proxy
- freebsd
- Kibana
- miniconda
- hardening
- 보안양파
- docker
- bash
- XCP-ng
- G-suite
- centos 8
- Kibana server is not ready yet
- x-pack
- macos
- xe guest utilities
- Windows
- application security
- proxycfg
- elastic stack
- 한글가이드
Archives
- Today
- Total
선 밖에 선 자유인
AWS cloud-init 본문
cloud-init은 인스턴스가 처음 기동할 때만 실행 됨
소프트웨어 설치, 설정 파일 수정 등이 가능함
apache 웹 서버를 yum install 및 업데이트하고 http 구동 cloud-init 문법
---------------------------------------------
# cloud-config
repo-upgrade: true
repo-upgrade: all
packages:
- httpd
runcmd:
- service httpd start
- chkconfig httpd on
---------------------------------------------
Comments