ELK: Difference between revisions

From artserver wiki
No edit summary
No edit summary
Line 9: Line 9:
change elasticsearch JVM heap size to use only 1G in /etc/elasticsearch/jvm.options
change elasticsearch JVM heap size to use only 1G in /etc/elasticsearch/jvm.options
<code>-Xms1g</code> <code>-Xmx1g</code>
<code>-Xms1g</code> <code>-Xmx1g</code>
==Test ElsticSearch==
<code>curl --cacert /etc/elasticsearch/certs/http_ca.crt -u elastic http://localhost:9200</code>

Revision as of 10:35, 26 September 2022

Installing ELK stack

Followed https://techviewleo.com/install-elastic-stack-elk-on-debian/ ports:

  • elasticsearch: 9200
  • logstash: 5044
  • kibana: 5601
  • filebeat

change elasticsearch JVM heap size to use only 1G in /etc/elasticsearch/jvm.options -Xms1g -Xmx1g

Test ElsticSearch

curl --cacert /etc/elasticsearch/certs/http_ca.crt -u elastic http://localhost:9200