Elastic Search: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Created page with "=Introduction= First dive into elastic search. I followed the install directions on [https://hostnextra.com/learn/tutorials/install-elk-stack-with-nginx-on-ubuntu here]<br> I did not use the ssl and add kibana.local to my host file<br> The logstash had the following setup <syntaxhighlist lang="conf"> output { elasticsearch { hosts => ["http://kibana.local:9200"] index => "syslog-%{+YYYY.MM.dd}" ssl => false user => "logstash_system" password =..."
 
 
Line 3: Line 3:
I did not use the ssl and add kibana.local to my host file<br>
I did not use the ssl and add kibana.local to my host file<br>
The logstash had the following setup
The logstash had the following setup
<syntaxhighlist lang="conf">
<syntaxhighlight lang="conf">
output {
output {
   elasticsearch {
   elasticsearch {
Line 13: Line 13:
   }
   }
  }
  }
</syntaxhighlist >
</syntaxhighlight>

Latest revision as of 06:06, 20 September 2024

Introduction

First dive into elastic search. I followed the install directions on here
I did not use the ssl and add kibana.local to my host file
The logstash had the following setup

output {
   elasticsearch {
     hosts => ["http://kibana.local:9200"]
     index => "syslog-%{+YYYY.MM.dd}"
     ssl => false
     user => "logstash_system"
     password => "Not Saying"
   }
 }