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