Skip to content

Instantly share code, notes, and snippets.

@dubcl
Last active November 22, 2018 17:55
Show Gist options
  • Save dubcl/85ee74a3d1ce464bba7366a5ba49edba to your computer and use it in GitHub Desktop.
Save dubcl/85ee74a3d1ce464bba7366a5ba49edba to your computer and use it in GitHub Desktop.
elasticsearch fix

First install java, elastic have problem if it's not installed

apt install openjdk-8-jre-headless

now install

apt install elasticsearch

stop elastic

service elasticsearch stop

edit /usr/lib/systemd/system/elasticsearch.service and add

LimitMEMLOCK=infinity

edit /etc/elasticsearch/jvm.options and change

-Xms1g
-Xmx1g

with your values, for example

-Xms4g
-Xmx4g

then reload systemd with

systemctl daemon-reload

start elastic

systemctl start elasticsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment