일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- vCenter
- mongodb 설치
- 하이퍼바이저
- AWS EFS
- Docker
- ansible
- AD Migration
- Active Directory Migration
- AWS EBS
- ADFS 구성 방법 및 이중화
- vSphere
- ADFS SSO
- ELK
- Exchange Server
- AWS
- Active Directory
- ADFS proxy
- 도커
- ADFS 이중화
- Application Gateway
- awx
- AWS S3
- MSSQL 2012
- Kubernetes
- vmware vsphere
- Exchange 2003
- Azure
- vCenter Syslog collector
- ELK 설치
- ADFS Traffic Manager
Archives
- Today
- Total
practice makes perfect
Ansible Handlers 본문
- Handler 는 Task 와 똑같습니다. (Task 가 하는 모든일을 할수 있죠), 다만, 그것은 다른 Task에 의해 call 되었을 때만 실행됩니다.
- 약간 Event System 같은거라고 생각하시면 됩니다.
- Handler 는 특정 이벤트가 일어났을때 실행됩니다.
- Task 가 실행된 뒤, "두번째" 실행되어야 하는 작업이 있을때 유용
- 예를들어 어떤 새로운 서비스를 설치한뒤, Handler로 설정을 변경하고 서비스를 실행하는 작업에 유
[사용법]
# Example shows using the local machine still
# Remove 'connection' and set hosts to 'remote' for a remote connection
- hosts: local
connection: local
become: yes
become_user: root
tasks:
- name: Install Nginx
apt:
name: nginx
state: installed
update_cache: true
notify:
- Start Nginx
handlers:
- name: Start Nginx
service:
name: nginx
state: started
여기에서는 설치 Task에 "notify" 속성값을 지정하였습니다.
"Start Nginx"라는 이름을 가진 Handler 에게 Task 가 끝나는대로 알림을 보내지요.
그러면 "Start Nginx" 라는 Handler 를 만듭니다.
그리고 이 Handler 는 알림이 왔을때 "Start Nginx" Task 가 됩니다.
이 특별한 Handler 는 Service 모듈을 사용합니다.
이는 시스템 서비스들을 키고 끄고 재시작 하는 등의 액션을 할 수 있습니다.
'Ansible' 카테고리의 다른 글
AWX Module 확인 (0) | 2024.05.06 |
---|---|
AWX(Tower) 관리 작업 (0) | 2024.05.06 |
Ansible Vault (1) | 2020.12.13 |
Ansible 을 통한 계정 추가 및 패스워드 변경 (0) | 2019.10.12 |
Ansible 란 ? (0) | 2019.10.12 |
Comments