码迷,mamicode.com
首页 > 其他好文 > 详细

ansible 批量推送公钥

时间:2018-03-12 16:52:35      阅读:939      评论:0      收藏:0      [点我收藏+]

标签:配置   info   sans   family   tar   sts   主机地址   ref   rsa   

这里我们使用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 给删除掉

 技术分享图片

 

然后编写playbook

这里使用到了authoried_keys模块
估计背墙了,所以。。。。。
 

authoried_keys模块参数介绍

技术分享图片

 

注意在推送playbook的时候我们要注意host 的格式(要有密码)

修改ansible的hosts(Inventory)文件,如下图所示,格式:

[主机名] [ssh连接账户] [ssh主机地址] [ssh连接账户对应的密码]

 

技术分享图片

验证一下公钥是不是传过去了

我们看一下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 批量推送公钥

标签:配置   info   sans   family   tar   sts   主机地址   ref   rsa   

原文地址:https://www.cnblogs.com/smail-bao/p/8549557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!