본문 바로가기
인프라/앤서블(Ansible)

ansible "msg": "Missing sudo password"

by IT맥구리나스 2022. 5. 16.

ansible 명령어 수행시 "msg": "Missing sudo password" 에러가 발생한다.

PLAY [linux] **************************************************************************************************************************************************************************

TASK [Gathering Facts] ****************************************************************************************************************************************************************
fatal: [x.x.x.x]: FAILED! => {"msg": "Missing sudo password"}

PLAY RECAP ****************************************************************************************************************************************************************************
x.x.x.x                : ok=0    changed=0    unreachable=0    failed=1    skipped=0    rescued=0    ignored=0

 

해결방법

ansible 명령어를 수행받는 서버에서 ansible 명령을 수행하는 계정의 sudo권한을 주는 파일 설정을 한다.

vi /etc/sudoers
tempansible ALL=(ALL) NOPASSWD: ALL
반응형

댓글