반응형
Ansible 에러 정리
"to use the 'ssh' connection type with passwords, you must install the sshpass program"
[오류상태]
fatal: [10.0.2.7]: FAILED! => {"failed": true, "msg": "to use the 'ssh' connection type with passwords, you must install the sshpass program"}
[원인]
host에 sshpass가 설치되어있지 않아서 발생
[해결법]
CentOS : yum install -y sshpass
Ubuntu : apt-get install -y sshpass
반응형
'클라우드 > Ansible' 카테고리의 다른 글
Ansible playbook에서 sudo 사용하기 (0) | 2022.04.07 |
---|---|
Ansible, Hashicorp vault container 연동 (0) | 2022.04.07 |
Ansible directory, file 생성 후 file 내용 추가 (0) | 2022.02.10 |
Ansible Play boock "Are you sure you want to continue connecting (yes/no)" 항목 Pass 하는 법 (0) | 2022.01.27 |
Ansible 파일, 디렉터리 삭제 (file 모듈) (0) | 2022.01.27 |