Posts

Showing posts from June, 2019

Elastic search Kibana

Image
  Installation and Configuration of ElasticSearch Pre-requisites sudo apt-get update sudo apt-get install openjdk-8-jdk Manual ElK Stack Installation steps Download and install public signing key wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - Install apt-transport-https package sudo apt-get install apt-transport-https -y Save directory definitions echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list Update and Install elasticsearch sudo apt-get update && sudo apt-get install elasticsearch && sudo apt-get install logstash && sudo apt-get install kibana Configure elasticsearch sudo su nano /etc/elasticsearch/elasticsearch.yml change cluster name cluster.name: demo-elk give the cluster a descriptive name node.name: elk-1 change network binding network.host: 0.0.0.0 setup discovery.type as single node discovery.type: singl