# docker-compose-service **Repository Path**: wangyikai/docker-es-service ## Basic Information - **Project Name**: docker-compose-service - **Description**: docker-compose 容器服务汇总! - **Primary Language**: Docker - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 10 - **Created**: 2020-06-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # docker-es-service #### 介绍 docker-compose构建elasticsearch集群+Kibana+Cerebro+ik中文分词器 #### 软件架构 软件架构说明 #### 安装教程 ##### 1. 创建`docker-compose`目录结构 ![](https://molongyin.oss-cn-beijing.aliyuncs.com/es-images/es-dir.png) 将`elasticsearch`下的各个节点的`data`和`logs`目录需要修改权限: ```shell chmod 0777 data ``` `analysis-ik`分词器的已经放入,需要的可以到码云下载 : ` https://gitee.com/molonglove/docker-es-service ` ##### 2. `docker-compose.yml`配置文件 ```yml version: '3' networks: esnet: services: # 主节点 es-master: container_name: es-master hostname: es-master image: elasticsearch:7.1.0 restart: always ports: - 9200:9200 ulimits: memlock: soft: -1 hard: -1 volumes: - ./elasticsearch/es-master/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml - ./elasticsearch/es-master/plugins/analysis-ik:/usr/share/elasticsearch/plugins/analysis-ik - ./elasticsearch/es-master/data:/usr/share/elasticsearch/data - ./elasticsearch/es-master/logs:/usr/share/elasticsearch/logs environment: - "ES_JAVA_OPTS=-Xms512m -Xmx512m" networks: esnet: aliases: - es-master # 从节点 es-node-1: container_name: es-node-1 image: elasticsearch:7.1.0 restart: always volumes: - ./elasticsearch/es-node-1/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml - ./elasticsearch/es-node-1/plugins/analysis-ik:/usr/share/elasticsearch/plugins/analysis-ik - ./elasticsearch/es-node-1/data:/usr/share/elasticsearch/data - ./elasticsearch/es-node-1/logs:/usr/share/elasticsearch/logs environment: - "ES_JAVA_OPTS=-Xms512m -Xmx512m" ulimits: memlock: soft: -1 hard: -1 networks: esnet: aliases: - es-node-1 # 从节点 es-node-2: container_name: es-node-2 image: elasticsearch:7.1.0 restart: always volumes: - ./elasticsearch/es-node-2/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml - ./elasticsearch/es-node-2/plugins/analysis-ik:/usr/share/elasticsearch/plugins/analysis-ik - ./elasticsearch/es-node-2/data:/usr/share/elasticsearch/data - ./elasticsearch/es-node-2/logs:/usr/share/elasticsearch/logs environment: - "ES_JAVA_OPTS=-Xms512m -Xmx512m" ulimits: memlock: soft: -1 hard: -1 networks: esnet: aliases: - es-node-2 # kibana 监控 kibana: image: docker.elastic.co/kibana/kibana:7.1.0 container_name: kibana volumes: - ./kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml environment: - I18N_LOCALE=zh-CN - XPACK_GRAPH_ENABLED=true - TIMELION_ENABLED=true - XPACK_MONITORING_COLLECTION_ENABLED="true" ports: - "5601:5601" networks: - esnet # Cerebro cerebro: image: lmenezes/cerebro:0.8.3 container_name: cerebro ports: - "9000:9000" command: - -Dhosts.0.host=http://es-master:9200 networks: - esnet ``` ##### 3. 各个节点的`elasticsearch`的配置文件 主节点: ```yml # 集群名称 cluster.name: es-cluster # 节点名称 node.name: es-master # 是否可以成为master节点 node.master: true # 是否允许该节点存储数据,默认开启 node.data: false # 网络绑定 network.host: 0.0.0.0 # 设置对外服务的http端口 http.port: 9200 # 设置节点间交互的tcp端口 transport.port: 9300 # 集群发现 discovery.seed_hosts: - es-master - es-node-1 - es-node-2 # 手动指定可以成为 mater 的所有节点的 name 或者 ip,这些配置将会在第一次选举中进行计算 cluster.initial_master_nodes: - es-master # 支持跨域访问 http.cors.enabled: true http.cors.allow-origin: "*" # 安全认证 xpack.security.enabled: false bootstrap.memory_lock: true ``` 从节点`es-node-1`: ```yml # 集群名称 cluster.name: es-cluster # 节点名称 node.name: es-node-1 # 是否可以成为master节点 node.master: false # 是否允许该节点存储数据,默认开启 node.data: true # 网络绑定 network.host: 0.0.0.0 # 设置对外服务的http端口 http.port: 9200 # 设置节点间交互的tcp端口 transport.port: 9300 # 集群发现 discovery.seed_hosts: - es-master - es-node-1 - es-node-2 # 手动指定可以成为 mater 的所有节点的 name 或者 ip,这些配置将会在第一次选举中进行计算 cluster.initial_master_nodes: - es-master # 支持跨域访问 http.cors.enabled: true http.cors.allow-origin: "*" # 安全认证 xpack.security.enabled: false bootstrap.memory_lock: true ``` 从节点`es-node-2` ```yml # 集群名称 cluster.name: es-cluster # 节点名称 node.name: es-node-2 # 是否可以成为master节点 node.master: false # 是否允许该节点存储数据,默认开启 node.data: true # 网络绑定 network.host: 0.0.0.0 # 设置对外服务的http端口 http.port: 9200 # 设置节点间交互的tcp端口 transport.port: 9300 # 集群发现 discovery.seed_hosts: - es-master - es-node-1 - es-node-2 # 手动指定可以成为 mater 的所有节点的 name 或者 ip,这些配置将会在第一次选举中进行计算 cluster.initial_master_nodes: - es-master # 支持跨域访问 http.cors.enabled: true http.cors.allow-origin: "*" # 安全认证 xpack.security.enabled: false bootstrap.memory_lock: true ``` ##### 4. `Kibana`配置 ```yml # Kibana is served by a back end server. This setting specifies the port to use. # 端口 server.port: 5601 # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values. # The default is 'localhost', which usually means remote machines will not be able to connect. # To allow connections from remote users, set this parameter to a non-loopback address. # 任何IP都可以访问 server.host: "0.0.0.0" # Enables you to specify a path to mount Kibana at if you are running behind a proxy. # Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath # from requests it receives, and to prevent a deprecation warning at startup. # This setting cannot end in a slash. #server.basePath: "" # Specifies whether Kibana should rewrite requests that are prefixed with # `server.basePath` or require that they are rewritten by your reverse proxy. # This setting was effectively always `false` before Kibana 6.3 and will # default to `true` starting in Kibana 7.0. #server.rewriteBasePath: false # The maximum payload size in bytes for incoming server requests. #server.maxPayloadBytes: 1048576 # The Kibana server's name. This is used for display purposes. #server.name: "your-hostname" # The URLs of the Elasticsearch instances to use for all your queries. # elasticsearch.hosts: ["http://192.168.252.136:9200"] # 指定访问 elasticsearch.hosts: ["http://es-master:9200"] # When this setting's value is true Kibana uses the hostname specified in the server.host # setting. When the value of this setting is false, Kibana uses the hostname of the host # that connects to this Kibana instance. #elasticsearch.preserveHost: true # Kibana uses an index in Elasticsearch to store saved searches, visualizations and # dashboards. Kibana creates a new index if the index doesn't already exist. #kibana.index: ".kibana" # The default application to load. #kibana.defaultAppId: "home" # If your Elasticsearch is protected with basic authentication, these settings provide # the username and password that the Kibana server uses to perform maintenance on the Kibana # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which # is proxied through the Kibana server. #elasticsearch.username: "user" #elasticsearch.password: "pass" # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively. # These settings enable SSL for outgoing requests from the Kibana server to the browser. #server.ssl.enabled: false #server.ssl.certificate: /path/to/your/server.crt #server.ssl.key: /path/to/your/server.key # Optional settings that provide the paths to the PEM-format SSL certificate and key files. # These files validate that your Elasticsearch backend uses the same key files. #elasticsearch.ssl.certificate: /path/to/your/client.crt #elasticsearch.ssl.key: /path/to/your/client.key # Optional setting that enables you to specify a path to the PEM file for the certificate # authority for your Elasticsearch instance. #elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ] # To disregard the validity of SSL certificates, change this setting's value to 'none'. #elasticsearch.ssl.verificationMode: full # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of # the elasticsearch.requestTimeout setting. #elasticsearch.pingTimeout: 1500 # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value # must be a positive integer. #elasticsearch.requestTimeout: 30000 # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side # headers, set this value to [] (an empty list). #elasticsearch.requestHeadersWhitelist: [ authorization ] # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration. #elasticsearch.customHeaders: {} # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable. #elasticsearch.shardTimeout: 30000 # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying. #elasticsearch.startupTimeout: 5000 # Logs queries sent to Elasticsearch. Requires logging.verbose set to true. #elasticsearch.logQueries: false # Specifies the path where Kibana creates the process ID file. #pid.file: /var/run/kibana.pid # Enables you specify a file where Kibana stores log output. #logging.dest: stdout # Set the value of this setting to true to suppress all logging output. #logging.silent: false # Set the value of this setting to true to suppress all logging output other than error messages. #logging.quiet: false # Set the value of this setting to true to log all events, including system usage information # and all requests. #logging.verbose: false # Set the interval in milliseconds to sample system and process performance # metrics. Minimum is 100ms. Defaults to 5000. #ops.interval: 5000 # Specifies locale to be used for all localizable strings, dates and number formats. # 汉化 i18n.locale: "zh-CN" ``` ##### 5. 启动 ```shell docker-compose up # 启动 docker-compose up -d # 后台启动 第一次不建议使用 docker-compose ps # 查看执行状态 docker-compose logs -f 容器名 # 查看容器的执行日志 docker-compose down # 删除容器 ``` ##### 6. 启动情况 查看节点信息,访问:`http://192.168.252.128:9200/_cat/nodes` ![](https://molongyin.oss-cn-beijing.aliyuncs.com/es-images/es-nodes.png) 查看`Kibana` ,访问:`http://192.168.252.128:5601` ![](https://molongyin.oss-cn-beijing.aliyuncs.com/es-images/es-kibana.png) 查看`Cerebro`,访问:`http://192.168.252.128:9000` ![](https://molongyin.oss-cn-beijing.aliyuncs.com/es-images/es-cerebro.png) ##### 7. 欢迎访问公众号 ![](https://molongyin.oss-cn-beijing.aliyuncs.com/blog_images/%E5%85%AC%E4%BC%97%E5%8F%B7.jpg) #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 码云特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)