使用saltstack进行zabbix-agent自动化部署

文章目录

  • 编写top.sls
  • compile_tools.sls内容
  • zabbix-agent.sls内容
  • 配置文件

编写top.sls

在这里插入图片描述

创建zabbix文件夹,建立文件
compile_tools.sls 安装编译需要的一些工具
zabbix-agent.sls 安装zabbix-agent

compile_tools.sls内容

compile_tools:
  pkg:
    - installed
    - name:
      - gcc
      - gcc-c++
      - glibc
      - make
      - autoconf
      - openssl
      - openssl-devel

zabbix-agent.sls内容

include:
  - zabbix.compile_tools
zabbix-release:
  cmd.run:
    - name: rpm -ivh  http://repo.zabbix.com/zabbix/4.2/rhel/7/x86_64/zabbix-release-4.2-1.el7.noarch.rpm

zabbix-agent: 
  pkg:
    - installed
    - require:
      - cmd: zabbix-release
      - 
  file.managed:
    - source: salt://file/zabbix_agentd.conf
    - name: /etc/zabbix/zabbix_agentd.conf
    - user: root
    - group: root
    - mode: 644
    - require:
      - pkg: zabbix-agent
      - 
  service:
    - running
    - reload: True
    - enable: True
    - watch:
      - pkg: zabbix-agent
      - file: /etc/zabbix/zabbix_agentd.conf

配置文件

准备zabbix-agent.conf 客户端配置文件,路径 salt/file/zabbix_agent.conf
在这里插入图片描述
修改:
被动模式只修改:Server=192.168.90.12 //zabbix-server服务器IP
主动模式只修改:ServerActive=192.168.90.12
Hostname= //本机主机名
然后执行 salt ‘*’ state.highstate
结果:
使用saltstack进行zabbix-agent自动化部署_第1张图片

你可能感兴趣的:(linux,saltstack,zabbix)