ansible生产环境使用场景:批量部署elk客户端

Posted loong576

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible生产环境使用场景:批量部署elk客户端相关的知识,希望对你有一定的参考价值。

背景

应审计要求,系统日志需保留1年时间,现将私有云上所有的系统日志message上送elk平台

[root@xxx-1 opt]# more /etc/ansible/yaml/product/message_elk.yaml
#上传私有云系统日志message至elk平台
---
- hosts: " hostlist " 
  remote_user: root 
  gather_facts: no
  tasks:
  - name: copy file and untar 
    unarchive:
      copy: yes
      src: /root/filebeat.tar.gz
      dest: /opt 
      mode: 0755
      owner: root
    register: copy_untar_files
  - name: copy sh 
    copy:
      src: /tmp/checkfilebeat.sh
      dest: /opt 
      mode: 0755
      owner: root
      backup: yes
    register: copy_sh
  - name: install crontab
    cron:
      minute: "*/20"
      user: root 
      job: /opt/checkfilebeat.sh >/dev/null 2>&1 
      name: check and start filebeat

脚本执行逻辑

脚本checkfilebeat.sh会检查filebeat进程,若不存在则会自动拉起来

脚本执行

[root@xxx-1 product]# ansible-playbook message_elk.yaml  -e hostlist=all

执行时若出现卡顿情况可分批执行:

[root@kfzx-filestorge-1 product]# ansible-playbook message_elk.yaml  -e hostlist=xa-1,xb-2,xc-1,xd-1,xe-1,xf 

检查

[root@xxx-1 opt]# ansible -m shell -a "ps -ef|grep filebeat|grep -v grep " all

elk平台查看

以上是关于ansible生产环境使用场景:批量部署elk客户端的主要内容,如果未能解决你的问题,请参考以下文章

ansible生产环境使用场景

ansible批量部署

利用Ansible部署运行Apache(http)的Docker容器

01Ansible简介与部署

zabbix系列之使用ansible批量部署zabbix客户端

ansible安装及模块的管理