Typography

一只奶牛猫

Docker部署Elasticsearch与Kibana配置指南

发布于 # docker

Docker安装ES/Kibana

部署单点ES

Docker命令

# 创建网络
docker network create es-net
# 拉取镜像
docker pull elasticsearch:7.17.5
docker pull kibana:7.17.5
# 运行
docker run -d \
    --name es \
    -e "ES_JAVA_OPTS=-Xms512m -Xmx512m" \
    -e "discovery.type=single-node" \
    -v es-data:/usr/share/elasticsearch/data \
    -v es-plugins:/usr/share/elasticsearch/plugins \
    --privileged \
    --network es-net \
    -p 9200:9200 \
    -p 9300:9300 \
elasticsearch:7.17.5

下面是各个参数的含义解释和作用:

测试

在浏览器中输入:http://localhost:9200 即可看到elasticsearch的响应结果。

部署kibana

命令

docker run -d --name kibana -e ELASTICSEARCH_HOSTS=http://es:9200 --network=es-net -p 5601:5601 kibana:7.17.5

参数说明:

此时,在浏览器输入地址访问:http://localhost:5601,即可看到结果.

DevTools

kibana中���供了一个DevTools界面,地址:http://localhost:5601/app/dev_tools#/console

这个界面中可以编写DSL来操作elasticsearch。并且对DSL语句有自动补全功能。

安装IK分词器

docker cp /Users/shizitoumengchong/Documents/elasticsearch-analysis-ik-7.17.5.zip 3af12e068f16:/usr/share/elasticsearch
docker exec -it es /bin/bash
elasticsearch-plugin install file:/usr/share/elasticsearch/elasticsearch-analysis-ik-7.17.5.zip
# 选择Y回车

重启容器

# 4、重启容器
docker restart es

# 查看es日志
docker logs -f es
curl --location --request POST 'http://localhost:9200/_analyze?pretty' \
--header 'Token: dd119348-0672-4ab8-9359-7a9c3ac30a6c' \
--header 'Digi-Middleware-Auth-App: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6ImthaS1za2MiLCJzaWQiOjB9.hQL5afikrokZJPJ4mUldcLsgmJXQMxegUEWI4Apyzrg' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
  "analyzer": "ik_max_word",
  "text": ["我爱我的祖国,并且我还深爱着你"]
}'
curl --location --request POST 'http://localhost:9200/_analyze?pretty' \
--header 'Token: dd119348-0672-4ab8-9359-7a9c3ac30a6c' \
--header 'Digi-Middleware-Auth-App: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6ImthaS1za2MiLCJzaWQiOjB9.hQL5afikrokZJPJ4mUldcLsgmJXQMxegUEWI4Apyzrg' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
  "analyzer": "ik_smart",
  "text": ["我爱我的祖国,并且我还深爱着你"]
}'

source

https://www.cnblogs.com/auguse/articles/17727671.html