我尝试使用ansible来配置我必须使用的环境。特别是,我需要编写一个重新启动服务器的任务,所以我写了这个任务:
- name: waiting for server to come back
local_action: wait_for
host={{ ansible_hostname }}
port=22
state=started
delay=50
timeout=300
sudo: false
但即使正确重新启动服务器,任务也无法达到超时。
我想知道它是否因为我的ssh配置而失败。与这些服务器的连接是通过代理(ProxyCommand
中的~/.ssh/config
)完成的。
FROM VERBOSE OUTPUT
<servername> ESTABLISH SSH CONNECTION FOR USER: username
<servername> SSH: EXEC ssh -C -vvv -o ControlMaster=False -o Port=22 -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=username -o ConnectTimeout=10 -tt hostname
...
fatal: [servername -> localhost]: FAILED! => {"changed": false, "elapsed": 300, "failed": true, "invocation": {"module_args": {"connect_timeout": 5, "delay": "10", "exclude_hosts": null, "host": "hostname", "path": null, "port": "22", "search_regex": null, "state": "started", "timeout": "300"}, "module_name": "wait_for"}, "msg": "Timeout when waiting for host:22"}
我不知道是否相关但在输出中:
hostname != servername: hostname = foo, servername = foo.bar.com
我认为hostname=ansible_hostname
而servername=inventory_hostname
Ansible版本:ansible 2.0.1.0
答案 0 :(得分:0)
这是一个连接问题。为了摆脱这个问题,我增加了ssh超时。
这样做的一个简单方法是在ansible脚本的同一目录中创建ansible.cfg
文件并放入此内容中:
[defaults]
timeout = xx
其中xx对我来说是30。