Difference between revisions of "Docker: ElasticSearch"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) m Tag: visualeditor |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 51: | Line 51: | ||
===Bring the cluster up & down=== | ===Bring the cluster up & down=== | ||
| − | <syntaxhighlight lang="bash"> | + | Requires vm.max_map_count = 262144 ( <syntaxhighlight lang="bash"> |
| + | sudo sysctl -w vm.max_map_count=262144 && echo "vm.max_map_count=262144" | sudo tee -a /etc/sysctl.conf | ||
| + | </syntaxhighlight><syntaxhighlight lang="bash"> | ||
docker-compose up | docker-compose up | ||
docker-compose down | docker-compose down | ||
Latest revision as of 09:04, 15 April 2019
version: '2.2'
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
container_name: es01
environment:
- node.name=es01
- cluster.initial_master_nodes=es01,es02
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata01:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- esnet
es02:
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
container_name: es02
environment:
- node.name=es02
- discovery.seed_hosts=es01
- cluster.initial_master_nodes=es01,es02
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata02:/usr/share/elasticsearch/data
networks:
- esnet
volumes:
esdata01:
driver: local
esdata02:
driver: local
networks:
esnet:
Bring the cluster up & down[edit]
Requires vm.max_map_count = 262144 (
sudo sysctl -w vm.max_map_count=262144 && echo "vm.max_map_count=262144" | sudo tee -a /etc/sysctl.conf
docker-compose up
docker-compose down
Inspect status of cluster[edit]
curl http://127.0.0.1:9200/_cat/health