1. 程式人生 > >ansible 安裝和使用

ansible 安裝和使用

htm ansi .html 測試 style ble project fedora 安裝和使用

## 安裝epel 源:

1 rpm -ivh  https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm

## 安裝ansible 服務端:

1 yum install ansible -y

## ssh-keygen 生成秘鑰文件:

1 ssh-keygen -t rsa
2      一路回車......
3 cd /root/.ssh/ && ll ./*

## 配置ansible 的hosts 文件:

1 vim /etc/ansible/hosts
2 [web_group]
3 192.168.8.101

## 添加客戶端使用ssh 方式:

1 ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.8.101

## 測試所有連接的客戶端:

1 ansible all -a who

轉自:http://www.cnblogs.com/zhenxing06/p/5865539.html

ansible 安裝和使用