ansible 关闭ssh首次连接时提示
关闭ssh首次连接时提示。
修改/etc/ansible/ansible.cfg配置文件
方法一:(推荐,配置文件中存在)
host_key_checking = False
方法二:
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no
修改/etc/ansible/ansible.cfg配置文件
方法一:(推荐,配置文件中存在)
host_key_checking = False
方法二:
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no