首页 > 其他 > 详细

ansible批量部署zabbix-agent

时间:2020-08-06 18:29:02      阅读:80      评论:0      收藏:0      [点我收藏+]

1.环境部署

IP 描述
192.168.253.100 ansible
192.168.253.53 192.168.253.55 zabbix-agent

 

2.ansible安装

这里就不多说了

 

3.playbook编写剧本

3.1 查看结构

技术分享图片

 

 

 

3.2 hosts主机

[agent]
192.168.253.153 hostname=mysql-server1
192.168.253.155 hostname=mysql-server2

3.3 files/zabbix.repo

[zabbix]
name=Zabbix Official Repository - \$basearch
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/\$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-non-supported]
name=Zabbix Official Repository non-supported - \$basearch
baseurl=https://mirrors.aliyun.com/zabbix/non-supported/rhel/7/\$basearch/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=1

3.4  tasks/prepare.yml

- name: 关闭firewalld
  service: name=firewalld state=stopped enabled=no

- name: 临时关闭 selinux
  shell: "setenforce 0"
  failed_when: false

- name: 永久关闭 selinux
  lineinfile:
    dest: /etc/selinux/config
    regexp: "^SELINUX="
    line: "SELINUX=disabled"

- name: 添加EPEL仓库
  copy:
    src: zabbix.repo
    dest: /etc/yum.repos.d/

 

3.5 tasks/agent_install.yml

- name: 添加GPGKEY_1
  shell: curl https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX-A14FE591 -o /etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591

- name: 添加GPGKEY_2
  shell: curl https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX  -o /etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX

- name: 加载缓存
  yum:
    update_cache: yes

- name: 下载zabbix-agent
  yum:
    name: zabbix-agent
    state: installed

- name: 修改配置文件_1
  lineinfile:
    dest: /etc/zabbix/zabbix_agentd.conf
    regexp: Server=127.0.0.1
    line: Server=192.168.253.120

- name: 修改配置文件_2
  lineinfile:
    dest: /etc/zabbix/zabbix_agentd.conf
    regexp: ServerActive=127.0.0.1
    line: ServerActive=192.168.253.120

- name: 修改配置文件_3
  lineinfile:
    dest: /etc/zabbix/zabbix_agentd.conf
    regexp: Hostname=Zabbix server
    line: Hostname= {{ hostname }}

- name: 启动zabbix_agent
  service:
    name: zabbix-agent
    enabled: yes
    state: started

 

3.6 tasks/main.yml

- include: prepare.yml
- include: agent_install.yml

3.7 agent.yml

- hosts: agent
  remote_user: root

  roles:
    - zabbix_agent

 

4.一键安装

cd agent
ansible-playbook -i hosts agent.yaml

 

 技术分享图片

 

 执行成功!!

 

ansible批量部署zabbix-agent

原文:https://www.cnblogs.com/lanist/p/13447996.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!