개요
- 앤서블 플레이북 실행중 아래와 같은 에러가 출력된다
ansible Timeout (12s) waiting for privilege escalation prompt
fatal: [TEST-game01]: FAILED! => {"msg": "Timeout (12s) waiting for privilege escalation prompt: "}
원인
- Test-game01서버의 ssh 로그인 타임이 10초를 초과해서 발생하는 문제다
- 나의 경우에 로컬 로그인이 아닌 freeipa연동을 통한 인증이라 ssh인증시 약간의 지연이 있었다
- asnible에서 기본 timeout은 10초이다
- timeout을 늘려주면 해결된다
해결방법
- /etc/ansible/ansible.cfg에서 아래 설정을 한다
[defaults]
timeout = 60
반응형
'인프라 > 앤서블(Ansible)' 카테고리의 다른 글
[ANSIBLE] 앤서블 ansible.legacy.setup": {"ansible_facts": {"discovered_interpreter_python": "/usr/bin/python3 에러 해결방법 (0) | 2024.10.17 |
---|---|
[ANSIBLE] 윈도우 업데이트 목록 추출하기 (0) | 2024.03.08 |
[ANSIBLE] winrm or requests is not installed: No module named 'winrm' 해결방법 (0) | 2024.02.07 |
[ANSIBLE] 앤서블 윈도우 task timeout 설정하기 (0) | 2023.12.11 |
[ANSIBLE] 앤서블 그룹내 특정 호스트 제외하고 실행하기 (0) | 2023.10.05 |
댓글