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 | 31 |
Tags
- ELASTIC
- xe guest utilities
- miniconda
- pfsense
- centos 8
- PlayBook
- GitLab
- docker
- x-pack
- macos
- elastic stack
- Elasticsearch
- Kibana
- freebsd
- 보안양파
- G-suite
- Proxy
- ansible
- 로그인불가
- Kibana server is not ready yet
- bash
- Windows
- proxycfg
- ssh key 배포
- 한글가이드
- endpoint security
- hardening
- application security
- XCP-ng
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