반응형
Ansible를 이용한 nginx 설치 및 삭제 (feat. CentOS)
-
Ansible를 이용한 nginx 설치 및 삭제 (feat. CentOS)Ansible 2021. 8. 26. 00:25
이번 포스팅은 앤서블을 이용해서 node01과 node02에 nginx를 설치하고 삭제해본다. 1. 호스트 구성 2. nginx 설치 --- - name: Install nginx on CentOS hosts: centOS# centOS 그룹에 실행할 플레이북 gather_facts: no # facts를 수집하지 않음으로써 앤서블의 성능 향상 become: yes # root권한으로 실행 tasks: - name: install epel-release yum: name: epel-release# 저장소를 최신 버전으로 설치 state: latest - name: install nginx yum: name: nginx state: present # present는 ..