ansible 批量推送公钥
Posted BigBao的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible 批量推送公钥相关的知识,希望对你有一定的参考价值。
这里我们使用ansible的playbook 的功能来推送秘钥
使用方法参见:http://blog.csdn.net/magedu_linux/article/details/48529645
这里我们首先配置好hosts,比如说
root@bigbao-VirtualBox:/etc/ansible/yml# cat /etc/ansible/hosts [sky_2] #sky1 ansible_ssh_host=10.10.20.2 ansible_ssh_port=102 ansible_ssh_user=root #sky2 ansible_ssh_host=10.10.20.2 ansible_ssh_port=103 ansible_ssh_user=root #sky3 ansible_ssh_host=10.10.20.2 ansible_ssh_port=104 ansible_ssh_user=root sky1 ansible_ssh_host=10.10.20.2 ansible_ssh_port=102 ansible_ssh_user=root ansible_ssh_pass="Abcd1234" sky2 ansible_ssh_host=10.10.20.2 ansible_ssh_port=103 ansible_ssh_user=root ansible_ssh_pass="Abcd1234" sky3 ansible_ssh_host=10.10.20.2 ansible_ssh_port=104 ansible_ssh_user=root ansible_ssh_pass="Abcd1234" 这里我们 一定要把ansible_ssh_pass给加上,不然的话会报下面的错,这里我们可以配置完成之后,ansible_ssh_pass 给删除掉
还有一个错误是
这里我们修改一下ansible.cfg的配置文件
host_key_checking = False把注释放开
然后编写playbook
这里使用到了authoried_keys模块
估计背墙了,所以。。。。。
注意在推送playbook的时候我们要注意host 的格式(要有密码)
验证一下公钥是不是传过去了
我们看一下yml文件内容是
root@bigbao-VirtualBox:/etc/ansible/yml# cat scp_key.yml - hosts: sky_2 remote_user: root tasks: - name: copy ssh key authorized_key: user: root key: "{{ lookup(\'file\', \'/root/.ssh/id_rsa.pub\') }}"
以上是关于ansible 批量推送公钥的主要内容,如果未能解决你的问题,请参考以下文章
自动化运维Ansible批量部署服务+shell脚本批量推送公钥