반응형 Development/Ansible2 Ansible Ping 테스트 해보자. 간단한(?) Ping 테스트. - inventory 파일 정보 [workers] worker1 ansible_host=192.168.0.12 ansible_user=root worker2 ansible_host=192.168.0.14 ansible_user=root - ping을 쏴보자. (-m 옵션은 module 이라는 의미) ansible workers -m ping 당연히 될줄 알았으나 Error 발생 worker1 | FAILED! => { "msg": "to use the 'ssh' connection type with passwords, you must install the sshpass program" } worker2 | FAILED! => { "msg": "to use the 'ssh' .. 2021. 11. 12. Ansible Inventory 파일 호스트 파일에는 목적지 노드의 정보를 담고 있다. 1. 파일 위치 : /etc/ansible/hosts (설치위치에 따라 달라질수는 있다.) 실제로 ansible.cfg 파일을 보면 다음과 같이 default 로 정의되어있다. # some basic default values... #inventory = /etc/ansible/hosts 2. 사용 방법 test test.com [test] test.com [web] web1.com web2.com [db] db.com [mail] mail.com [workers] worker1 ansible_host=192.168.0.12 ansible_user=root worker2 ansible_host=192.168.0.14 ansible_user=root [al.. 2021. 11. 12. 이전 1 다음 728x90 반응형