Ansible-批量导入key(入门)
Posted fuyuteng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible-批量导入key(入门)相关的知识,希望对你有一定的参考价值。
系统是centos7.5 python2.75
yum install -y ansible
ssh-keygen -t rsa
vim /etc/ansible/hosts
定义的一个hello组:
下面是主机节点
把/root/.ssh/id_rsa.pub分发到各节点authorized_key中
ansible hello -m authorized_key -a "user=root key=‘{{ lookup(‘file‘,‘/root/.ssh/id_rsa.pub‘) }}‘" -k
导入成功!
以上是关于Ansible-批量导入key(入门)的主要内容,如果未能解决你的问题,请参考以下文章