Elasticsearch: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
(Created page with "== Installation == * Increase vm.max_map_count <pre> grep vm.max_map_count /etc/sysctl.conf vm.max_map_count=262144 </pre> * Port 9200 * Pull image <pre>docker pull docker.el...")
 
Line 9: Line 9:
<pre>docker pull docker.elastic.co/elasticsearch/elasticsearch:7.9.2</pre>
<pre>docker pull docker.elastic.co/elasticsearch/elasticsearch:7.9.2</pre>
* Setup Volume
* Setup Volume
<pre>Volume data01:/usr/share/elasticsearch/data }/pre>
<pre>Volume data01:/usr/share/elasticsearch/data }</pre>





Revision as of 15:00, 27 September 2020

Installation

  • Increase vm.max_map_count
grep vm.max_map_count /etc/sysctl.conf
vm.max_map_count=262144 
  • Port 9200
  • Pull image
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.9.2
  • Setup Volume
Volume data01:/usr/share/elasticsearch/data }


Error

max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

sysctl -w vm.max_map_count=262144