拉取鏡像:node
[mall@VM_0_7_centos ~]$ sudo docker pull elasticsearch:6.4.0 [sudo] password for mall: 6.4.0: Pulling from library/elasticsearch 256b176beaff: Pull complete 6cb472d8b34a: Downloading [=================================================> ] 204.5MB/205.4MB 6cb472d8b34a: Pull complete 3a4f4d86c1c1: Pull complete d185a64a7692: Pull complete bc4d63245d6d: Pull complete c8e97292a30a: Pull complete c1c1a056e791: Pull complete 69b6c77c3236: Pull complete Digest: sha256:96345f6d73c0d615ddf8b9683848d625f211efacfe3b5b8765debbd1eebc5663 Status: Downloaded newer image for elasticsearch:6.4.0 docker.io/library/elasticsearch:6.4.0
修改vm.max_map_count參數:docker
[mall@VM_0_7_centos ~]$ sudo sysctl -w vm.max_map_count=262144 [sudo] password for mall: vm.max_map_count = 262144
啓動容器elasticsearch:centos
[mall@VM_0_7_centos ~]$ sudo docker run -p 9200:9200 -p 9300:9300 --name elasticsearch \ > -e "discovery.type=single-node" \ > -e "cluster.name=elasticsearch" \ > -v /mydata/elasticsearch/plugins:/usr/share/elasticsearch/plugins \ > -v /mydata/elasticsearch/data:/usr/share/elasticsearch/data \ > -d elasticsearch:6.4.0 606c0c45aa2693a23bf1a7de7be518b3022c5f107d2c7083f2590cba1589b9d9
進入容器報錯,提示啓動失敗:bash
[mall@VM_0_7_centos ~]$ sudo docker exec -it elasticsearch /bin/bash Error response from daemon: Container 606c0c45aa2693a23bf1a7de7be518b3022c5f107d2c7083f2590cba1589b9d9 is not running
修改數據文件權限,重啓:curl
[mall@VM_0_7_centos ~]$ sudo chmod +777 /mydata/elasticsearch/data [mall@VM_0_7_centos ~]$ sudo docker stop elasticsearch elasticsearch [mall@VM_0_7_centos ~]$ sudo docker start elasticsearch elasticsearch
測試一下:elasticsearch
[mall@VM_0_7_centos ~]$ curl -XGET 'localhost:9200' { "name" : "4FZrgc-", "cluster_name" : "elasticsearch", "cluster_uuid" : "6JP7jV8wQhqiVCg680hP-w", "version" : { "number" : "6.4.0", "build_flavor" : "default", "build_type" : "tar", "build_hash" : "595516e", "build_date" : "2018-08-17T23:18:47.308994Z", "build_snapshot" : false, "lucene_version" : "7.4.0", "minimum_wire_compatibility_version" : "5.6.0", "minimum_index_compatibility_version" : "5.0.0" }, "tagline" : "You Know, for Search" }