Ansible 安装与简单使用 2014-04-06 17:20:38

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


======================================================================================


一、安装

  1. $ pip install ansible

  2. #for debian

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

  4. $ sudo apt-get update

  5. $ sudo apt-get install ansible

  6. #for centos

  7. $ sudo yum install ansible

二、环境说明

1. 控制主机为 ubuntu 13.10 
2. 被控端为 2台 ubuntu 12.04 虚拟机 和 一台 centos 6.4 虚拟机
3. 通过ssh 密钥认证

三、初试牛刀

  1. ansible all -m ping           #内建的 ping 模块

 Ansible 安装与简单使用_ansible


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

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

  3. #以上两条命令结果是一样的,因为默认调用 command  模块,所以可以省略, all 表示所有节点, -a 后面是参数

 Ansible 安装与简单使用_ansible _02

 Ansible 安装与简单使用_ansible _03


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

 Ansible 安装与简单使用_ansible _04

## 转载请注明出处!

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