February 2019
Intermediate to advanced
446 pages
10h 55m
English
ELK images that are available on elastic.co's own Docker repository have the XPack package enabled by default at the time of writing this section. In the future, this may be optional. Based on XPack availability in ELK images, you can modify the Docker Compose file, docker-compose-elk.yml:
version: '2' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:5.5.1 ports: - "9200:9200" - "9300:9300" environment: ES_JAVA_OPTS: "-Xmx256m -Xms256m" xpack.security.enabled: "false" xpack.monitoring.enabled: "false" # below is required for running in dev mode. For prod mode remove them and vm_max_map_count kernel setting needs to be set to at least 262144 http.host: "0.0.0.0" transport.host: ...
Read now
Unlock full access