docker安装elasticsearch+elasticsearch-head+analysis-ik分词

1、用 Docker 拉取ElasticSearch镜像

[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker pull elasticsearch:7.9.0
7.9.0: Pulling from library/elasticsearch
75f829a71a1c: Pull complete
372e2d4c0ddd: Pull complete
8198cfd92e19: Pull complete
2f0fcc2d3406: Pull complete
148a03daadb1: Pull complete
a749858af05a: Pull complete
adbb23c45520: Pull complete
6a35898836f0: Pull complete
7d6737d49278: Pull complete
Digest: sha256:e72555746531240fcc1d8eb95866803bf6b6b91f46f1bc4d573ebdd9fcd951ba
Status: Downloaded newer image for elasticsearch:7.9.0
docker.io/library/elasticsearch:7.9.0

2、运行es容器:

docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms128m -Xmx128m" -v /root/dnmp/logs/es/:/usr/share/elasticsearch/logs 0eddd30d8bdf

3、访问http://xxxxxx:9200/ 是否安装成功

4、设置允许跨域访问(为了elasticsearch-head连接访问)

进入容器:docker exec -it elasticsearch /bin/bash
vi /config/elasticsearch.yml 
添加:http.cors.enabled: true
http.cors.allow-origin: "*"
退出exit:
重启:docker restart elasticsearch

5、安装elasticsearch-head 可以用 docker search elasticsearch-head 搜索镜像,如图: 拉去对应版本的镜像:本来想拉去对应es7.9的版本

[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker pull mobz/elasticsearch-head:7
Error response from daemon: manifest for mobz/elasticsearch-head:7 not found: manifest unknown: manifest unknown

进hub.docker.com看es-head看tag最高才5,只能拉取对应5的版本了 https://hub.docker.com

[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker pull mobz/elasticsearch-head:5
5: Pulling from mobz/elasticsearch-head
75a822cd7888: Pull complete
57de64c72267: Pull complete
4306be1e8943: Pull complete
871436ab7225: Pull complete
0110c26a367a: Pull complete
1f04fe713f1b: Pull complete
723bac39028e: Pull complete
7d8cb47f1c60: Pull complete
7328dcf65c42: Pull complete
b451f2ccfb9a: Pull complete
304d5c28a4cf: Pull complete
4cf804850db1: Pull complete
Digest: sha256:55a3c82dd4ba776e304b09308411edd85de0dc9719f9d97a2f33baa320223f34
Status: Downloaded newer image for mobz/elasticsearch-head:5
docker.io/mobz/elasticsearch-head:5

启动:
[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker images
REPOSITORY                     TAG                 IMAGE ID            CREATED             SIZE
dnmp_php                       latest              77cb480b483d        12 months ago       99.2MB
dnmp_nginx                     latest              ba1e4f2fea20        12 months ago       21.6MB
phpmyadmin/phpmyadmin          latest              dfd1f4649053        13 months ago       469MB
php                            7.2.33-fpm-alpine   b7633bb3bd66        13 months ago       74.7MB
elasticsearch                  7.9.0               0eddd30d8bdf        13 months ago       762MB
nginx                          1.19.1-alpine       ecd67fe340f9        14 months ago       21.6MB
erikdubbelboer/phpredisadmin   latest              775aabe0ad68        19 months ago       176MB
redis                          5.0.3-alpine        3d2a373f46ae        2 years ago         50.8MB
mysql                          8.0.13              102816b1ee7d        2 years ago         486MB
mobz/elasticsearch-head        5                   b19a5c98e43b        4 years ago         824MB
[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker run -d --name elasticsearh-head -p 9100:9100 b19a5c98e43b
cbd2120628fb504d6e6c590dfbfe8f849b3bb1080a3d9e582e7dda35ed9c8457
[root@iZwz9d6z27o4s0t3dzfydlZ dnmp]# docker ps
CONTAINER ID        IMAGE                COMMAND                  CREATED             STATUS              PORTS                                            NAMES
cbd2120628fb        b19a5c98e43b         "/bin/sh -c 'grunt s…"   4 seconds ago       Up 3 seconds        0.0.0.0:9100->9100/tcp                           elasticsearh-head
b7a01259e823        0eddd30d8bdf         "/tini -- /usr/local…"   32 minutes ago      Up 20 minutes       0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp   elasticsearch
e27ce2c83a34        dnmp_nginx           "/docker-entrypoint.…"   12 months ago       Up 6 months         0.0.0.0:80-82->80-82/tcp, 0.0.0.0:443->443/tcp   nginx
d7de9a939ab6        mysql:8.0.13         "docker-entrypoint.s…"   12 months ago       Up 6 months         0.0.0.0:3306->3306/tcp, 33060/tcp                mysql
b39b7ed44d30        dnmp_php             "docker-php-entrypoi…"   12 months ago       Up 6 months         9000/tcp, 9501/tcp                               php
4ac75b6380ad        redis:5.0.3-alpine   "redis-server /etc/r…"   12 months ago       Up 6 months         0.0.0.0:6379->6379/tcp                           redis

http://xxx.xxx.xx.xx:9100/访问:

6、安装ik分词

首先在宿主机下载:
wget https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.9.0/elasticsearch-analysis-ik-7.9.0.zip
进入容器es: docker exec -it elasticsearch /bin/bash
查看[root@b7a01259e823 plugins]# pwd
/usr/share/elasticsearch/plugins
exit;

把压缩包拷贝到容器内
docker cp elasticsearch-analysis-ik-7.9.0.zip elasticsearch:/usr/share/elasticsearch/plugins
进去容器plugins目录解压: 
unzip elasticsearch-analysis-ik-7.9.0.zip -d ik7.9
 rm -rf elasticsearch-analysis-ik-7.9.0.zip
重启es容器:docker restart elasticsearch

用postman查看分词是否成功:

http://120.79.229.23:9200/_analyze?pretty=true
body:{
	"analyzer":"ik_max_word",
	"text": "福建省厦门市"
}

zed
请先登录后发表评论
  • latest comments
  • 总共0条评论