문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
aws:elasticbeanstalk [2018/09/13 11:04] kwon37xi |
aws:elasticbeanstalk [2021/10/09 23:34] (현재) kwon37xi |
||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| - | ====== AWS ElasticBeansTalk ====== | + | ====== AWS ElasticBeansTalk |
| + | * [[aws: | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Custom Platform ===== | ||
| + | * [[https:// | ||
| ===== Java Process ===== | ===== Java Process ===== | ||
| 줄 6: | 줄 13: | ||
| * Log 파일 경로는 '' | * Log 파일 경로는 '' | ||
| + | ===== ebextensions ===== | ||
| + | * [[https:// | ||
| + | |||
| + | ==== 특정 패키지 설치 ==== | ||
| + | * yum, rubygems, python 및 rpm 등의 패키지 관리자를 지원합니다. 패키지는 rpm, yum, rubygems 및 python의 순서대로 처리됩니다. rubygems와 python 간에는 순서가 없습니다. 각 패키지 관리자에서 패키지 설치 순서는 보장되지 않습니다. | ||
| + | |||
| + | < | ||
| + | packages: | ||
| + | yum: | ||
| + | libmemcached: | ||
| + | ruby-devel: [] | ||
| + | gcc: [] | ||
| + | rpm: | ||
| + | epel: http:// | ||
| + | rubygems: | ||
| + | chef: ' | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 조건적 명령 실행 ==== | ||
| + | * '' | ||
| + | * [[https:// | ||
| + | |||
| + | < | ||
| + | commands: | ||
| + | 01_create_dir: | ||
| + | test: test ! -d " | ||
| + | command: mkdir " | ||
| + | | ||
| + | # 아래와 같은 식도 가능 | ||
| + | test: "[ -x / | ||
| + | </ | ||
| + | * '' | ||
| + | ==== leader_only ==== | ||
| + | * 특정 EBT 환경에 설정한 특정 단일 인스턴스에서만 명령 실행 | ||
| + | * '' | ||
| + | |||
| + | < | ||
| + | container_commands: | ||
| + | collectstatic: | ||
| + | command: " | ||
| + | 01syncdb: | ||
| + | command: " | ||
| + | leader_only: | ||
| + | </ | ||
| + | ===== 참고 ===== | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||