1. 程式人生 > >Ansible-批量導入key(入門)

Ansible-批量導入key(入門)

inf bsp color png ans oot ins class etc

系統是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(入門)