Ansible 安裝與簡單使用 2014-04-06 17:20:38php
轉自:http://blog.chinaunix.net/xmlrpc.php?r=blog/index&uid=29253247&sid=191677&pattern=list&page=1 css
======================================================================================shell
$ pip install ansibleubuntu
#for debiancentos
$ sudo apt-add-repository ppa:rquillo/ansiblessh
$ sudo apt-get updateide
$ sudo apt-get install ansibleui
#for centosspa
$ sudo yum install ansible.net
1. 控制主機爲 ubuntu 13.10
2. 被控端爲 2臺 ubuntu 12.04 虛擬機 和 一臺 centos 6.4 虛擬機
3. 經過ssh 密鑰認證
ansible all -m ping #內建的 ping 模塊
ansible all -a "/bin/echo hello, world" #執行命令
ansible all -m command -a "/bin/echo hello, world"
#以上兩條命令結果是同樣的,由於默認調用 command 模塊,因此能夠省略, all 表示全部節點, -a 後面是參數
ansible all -m shell -a "ping baidu.com -c 1" # shell 模塊
## 轉載請註明出處!
轉自:http://blog.chinaunix.net/xmlrpc.php?r=blog/index&uid=29253247&sid=191677&pattern=list&page=1