On-Premise 기반 시스템 통합/ansible (1) 썸네일형 리스트형 2단계 자동화 로그 서비스(Log Service) 자동화 각 서버의 로그를 수집시 nfs 서버로 로그가 모일수 있게 --- - name: Setup NFS Server hosts: localhost gather_facts: no tasks: - name: Install NFS server packages package: name: nfs-kernel-server become: yes state: present when: ansible_os_family == "Debian" or ansible_os_family == "RedHat" - name: Configure NFS exports blockinfile: path: /etc/exports block: | /export/logs {{ client_subnet }}(rw.. 이전 1 다음