Ansible简介:

     ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。

ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架。主要包括:

(1)、连接插件connection plugins:负责和被监控端实现通信;

(2)、host inventory:指定操作的主机,是一个配置文件里面定义监控的主机;

(3)、各种模块核心模块、command模块、自定义模块;

(4)、借助于插件完成记录日志邮件等功能;

(5)、playbook:剧本执行多个任务时,非必需可以让节点一次性运行多个任务。


方案实施:

服务器:10.0.0.128

客户端:10.0.0.129


1.在服务器生成免密钥文件,推送到客户端
[root@ansible ~]# ssh-keygen
[root@ansible ~]# ssh-copy-id 10.0.0.129

2.安装ansible软件
[root@ansible ~]# yum install -y ansible


3.修改配置文件,添加模块,将zabbix客户端IP添加进去

[root@ansible ~]# cat /etc/ansible/hosts

[zabbix_client]
10.0.0.129


4.创建安装zabbix客户端的ansible-playbook

[root@ansible ~]# cat /etc/ansible/install_zabbix_client.yaml

- hosts: zabbix_client
  remote_user: root
  tasks:
  - name: copy
    copy: src=/usr/local/src/zabbix-3.2.7.tar.gz dest=/usr/local/src/zabbix-3.2.7.tar.gz
  - name: tar
    shell: cd /usr/local/src;tar xf zabbix-3.2.7.tar.gz
  - name: useradd
    shell: useradd zabbix -s /sbin/nologin
  - name: yum
    yum: name={{ item }} state=latest
    with_items:
    - make
    - gcc
    - curl
    - curl-devel
  - name: configure
    shell: cd /usr/local/src/zabbix-3.2.7;./configure --with-net-snmp --with-libcurl --enable-agent --prefix=/usr/local/zabbix;make && make install
  - name: script
    shell: cp /usr/local/src/zabbix-3.2.7/misc/init.d/fedora/core5/zabbix_agentd /etc/init.d/
  - name: zabbix_agent
    shell: sed -i 's/ZABBIX_BIN="\/usr\/local\/sbin\/zabbix_agentd"/ZABBIX_BIN="\/usr\/local\/zabbix\/sbin\/zabbix_agentd"/g' /etc/init.d/zabbix_agentd
  - name: conf files
    shell: sed -i 's/Server=127.0.0.1/Server={{ server_ip }}/g' /usr/local/zabbix/etc/zabbix_agentd.conf
  - name: restart_server
    shell: /etc/init.d/zabbix_agentd restart

5.执行ansible-playbook

[root@ansible ansible]# ansible-playbook -e server_ip=10.0.0.128 install_zabbix_client.yaml

##-e 选项里的` server_ip `是client指定的zabbix_server的IP


6.输出结果

[root@ansible ansible]# ansible-playbook -e server_ip=10.0.0.128 install_zabbix_client.yaml

PLAY [zabbix_client] ************************************************************************************************************************

TASK [Gathering Facts] **********************************************************************************************************************
ok: [10.0.0.129]

TASK [copy] *********************************************************************************************************************************
ok: [10.0.0.129]

TASK [tar] **********************************************************************************************************************************
changed: [10.0.0.129]

TASK [useradd] ******************************************************************************************************************************
changed: [10.0.0.129]

TASK [yum] **********************************************************************************************************************************
ok: [10.0.0.129] => (item=[u'make', u'gcc', u'curl', u'curl-devel'])

TASK [configure] ****************************************************************************************************************************
changed: [10.0.0.129]

TASK [script] *******************************************************************************************************************************
changed: [10.0.0.129]

TASK [zabbix_agent] *************************************************************************************************************************
 [WARNING]: Consider using template or lineinfile module rather than running sed

changed: [10.0.0.129]

TASK [conf files] ***************************************************************************************************************************
changed: [10.0.0.129]

TASK [restart_server] ***********************************************************************************************************************
changed: [10.0.0.129]

PLAY RECAP **********************************************************************************************************************************
10.0.0.129                 : ok=10   changed=7    unreachable=0    failed=0   

end!!!!!!!!