Docker-ES 部署
宿主机部署
解压即用
使用 Docker-Compose 部署配置样例
创建网络
1
| docker network create --subnet=172.19.0.0/16 esnetwork
|
es-docker-compose.yml
文件内容
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
version: "2.2" services: es_master: image: elasticsearch:7.4.2 container_name: 12_es_master1 environment: - bootstrap.system_call_filter=false - node.name=12_es_master1 - node.master=true - node.data=false - cluster.name=es-docker-cluster1 - discovery.seed_hosts=192.168.172.73 - transport.publish_host=192.168.172.73 - transport.publish_port=9300 - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms1g -Xmx1g" - cluster.initial_master_nodes=12_es_master1 - Des.discovery.zen.minimum_master_nodes=1 - "network.host:0.0.0.0" - http.port=9200 - http.cors.enabled=true - http.cors.allow-origin="*" - http.publish_host=192.168.172.73 - http.publish_port=9200 - xpack.security.enabled:false - thread_pool.get.queue_size=1000 - thread_pool.write.queue_size=1000 - thread_pool.analyze.queue_size=1000 - thread_pool.search.queue_size=1000 - thread_pool.listener.queue_size=1000 - discovery.zen.ping_timeout=120s ulimits: memlock: soft: -1 hard: -1 volumes: - "/data_storage/12_es_master1:/usr/share/elasticsearch/data" - "/data_storage/es_plugins:/usr/share/elasticsearch/plugins" ports: - 192.168.172.73:9200:9200 - 192.168.172.73:9300:9300 networks: es_network: ipv4_address: 172.19.10.21
es_node1: image: elasticsearch:7.4.2 container_name: 12_es_node1 environment: - bootstrap.system_call_filter=false - node.name=12_es_node1 - node.master=false - node.data=true - cluster.name=es-docker-cluster1 - discovery.seed_hosts=192.168.172.73 - transport.publish_host=192.168.172.73 - transport.publish_port=9301 - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms1g -Xmx1g" - cluster.initial_master_nodes=12_es_master1 - Des.discovery.zen.minimum_master_nodes=1 - "network.host:0.0.0.0" - http.port=9200 - http.cors.enabled=true - http.cors.allow-origin="*" - http.publish_host=192.168.172.73 - http.publish_port=9201 - xpack.security.enabled:false - thread_pool.get.queue_size=1000 - thread_pool.write.queue_size=1000 - thread_pool.analyze.queue_size=1000 - thread_pool.search.queue_size=1000 - thread_pool.listener.queue_size=1000 - discovery.zen.ping_timeout=120s ulimits: memlock: soft: -1 hard: -1 volumes: - "/data_storage/12_es_node1:/usr/share/elasticsearch/data" - "/data_storage/es_plugins:/usr/share/elasticsearch/plugins" ports: - 192.168.172.73:9201:9200 - 192.168.172.73:9301:9300 networks: es_network: ipv4_address: 172.19.10.41
networks: es_network: external: name: esnetwork
|
更新容器
1
| docker-compose -f es-docker-compose.yml up -d
|
ES-配置
详见 Es-配置