Ansible 安裝與簡單使用

 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


1、安裝

  1. $ pip install ansibleubuntu

  2. #for debiancentos

  3. $ sudo apt-add-repository ppa:rquillo/ansiblessh

  4. $ sudo apt-get updateide

  5. $ sudo apt-get install ansibleui

  6. #for centosspa

  7. $ sudo yum install ansible.net

2、環境說明

1. 控制主機爲 ubuntu 13.10 
2. 被控端爲 2臺 ubuntu 12.04 虛擬機 和 一臺 centos 6.4 虛擬機
3. 經過ssh 密鑰認證

3、初試牛刀

  1. ansible all -m ping           #內建的 ping 模塊




  1. ansible all -"/bin/echo hello, world"   #執行命令

  2. ansible all -m command -a "/bin/echo hello, world"

  3. #以上兩條命令結果是同樣的,由於默認調用 command  模塊,因此能夠省略, all 表示全部節點, -a 後面是參數






  1. ansible all -m shell -"ping baidu.com -c 1"      # shell 模塊



## 轉載請註明出處!

轉自:http://blog.chinaunix.net/xmlrpc.php?r=blog/index&uid=29253247&sid=191677&pattern=list&page=1

相關文章
相關標籤/搜索