Giter VIP home page Giter VIP logo

elk-stack-ansible-setup's Introduction

Elk-stack and Filebeat vagrant-ansible setup

This is a setup of an ELK-stack version 6.6 with Filebeat on separate virtual machines. Communication between Logstash and Filebeat servers is secured with ssl_certificates. In this setup the certificate authority is self generated.

Example

CA authority:

$ openssl genrsa -des3 -out files/certs/myCA.key 2048
$ openssl req -x509 -new -nodes -key files/certs/myCA.key -sha256 -days 1825 -out files/certs/myCA.pem

Self signed certificate:

The CN of certificate must match the name of ELK host.

$ openssl genrsa -out files/certs/filebeat.key 2048
$ openssl req -new -key files/certs/filebeat.key -out files/certs/filebeat.csr
$ openssl x509 -req -in files/certs/filebeat.csr -CA files/certs/myCA.pem -CAkey files/certs/myCA.key -CAcreateserial -out files/certs/filebeat.crt -days 1825 -sha256

Vagrant

Vagrantfile needs plugins hostmanager and disksize to be installed:

$ vagrant plugin install vagrant-hostmanager
$ vagrant plugin install vagrant-disksize

Configurations for Vagrantfile are in vagrantfile.yaml. Contains names and ip addresses of the virtual machines

Ansible

Configurations for ansible setup are in elk.yml. Contains names of hosts which have to mach with vagrantfile.yaml hosts. Index templates arevlocated in roles/elasticsearch/files/templates/*.json. Includes number of shards and replicas.

elk-stack-ansible-setup's People

Contributors

genie9 avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.