Ubuntu下Ansible安裝和使用

Ansible是一個批量部署的工具html

參考:Ansible中文權威指南vim

1.安裝bash

sudo apt-get install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible

2.在/etc/ansible/hosts文件中添加服務器的ip服務器

vim /etc/ansible/hosts

3.須要將本身機器的~/.ssh/目錄下公鑰,即pub文件,添加到服務器的~/.ssh/authorized_keys文件中ssh

vim ~/.ssh/authorized_keys

測試ssh是否能夠免密登陸工具

4.測試可否ping通,以root用戶登陸測試

ansible all -m ping -u root

5.測試創建一個test文件夾code

ansible all -u root -a "/bin/mkdir test"
相關文章
相關標籤/搜索