Detailed explanation of deploying Elasticsearch kibana and ik word segmenter in docker

Detailed explanation of deploying Elasticsearch kibana and ik word segmenter in docker

es installation

docker pull elasticsearch:7.4.0
# -d : Run in the background# -p : Specify the port mapping between the host and the docker container# --name : Give the elasticsearch container an alias# -e : Specify single-node cluster mode# docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.4.0
docker run -id --name es -d -p 9200:9200 -p 9300:9300 -v /usr/share/elasticsearch/plugins:/usr/share/elasticsearch/plugins -e "discovery.type=single-node" elasticsearch:7.4.0
-v /usr/share/elasticsearch/plugins:/usr/share/elasticsearch/plugins #To configure this, you don't need to enter the container to operate. Just unzip the ik word segmenter to this directory and ojbk it.

es modify memory

find / -name jvm.options
vim /var/lib/docker/overlay2/1df979ae710529bc978409973092d28608f927ab6c4b26f5e2c0ffee06e3ac1e/diff /usr/share/elasticsearch/config/jvm.options

1.3 Configure the Chinese word segmenter ik

Because the directory is mapped when the elasticsearch container is created, the ik Chinese word segmenter can be configured on the host. When selecting the ik word segmenter, it needs to correspond to the elasticsearch version. Upload the elasticsearch-analysis-ik-7.4.0.zip in the document to the server and unzip it in the corresponding directory (plugins).

kibana installation

docker pull kibana:7.4.0
# -e : Specify environment variable configuration, provide Chinese translation# --like : Establish an association between two containers, kibana is associated with es
# If you are not used to Chinese, you can remove the condition docker run -d --name kibana --link es:es-p 5601:5601 kibana:7.4.0
docker exec -it kibana /bin/bash #Enter the container and change the host
cd config
vi kibana.yml
Change host to 0.0.0.0
Change the address to public network ip+9200

Check the log of a certain thing. If it cannot be started, you can check the log details.

docker logs kibana

This is the end of this article about deploying Elasticsearch kibana with docker and detailed explanation of ik word segmenter. For more relevant content about deploying Elasticsearch kibana with docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Graphical method of integrating elasticsearch7 with springboot
  • SpringBoot integrates Elasticsearch to implement indexing and document operations
  • Detailed explanation of the use of golang elasticsearch Client
  • Detailed tutorial on using ElasticSearch in springboot
  • Java elasticsearch installation and deployment tutorial

<<:  A quick review of CSS3 pseudo-class selectors

>>:  MySQL data loss troubleshooting case

Recommend

JS implements Baidu search box

This article example shares the specific code of ...

vue3 custom directive details

Table of contents 1. Registering custom instructi...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Springboot+VUE to realize login and registration

This article example shares the specific code of ...

The vue project realizes drawing a watermark in a certain area

This article shares with you how to use Vue to dr...

Detailed explanation of how to enter and exit the Docker container

1 Start the Docker service First you need to know...

12 types of component communications in Vue2

Table of contents 1. props 2..sync 3.v-model 4.re...

Detailed explanation of three solutions to the website footer sinking effect

Background Many website designs generally consist...

Example of how to configure nginx to implement SSL

Environmental Description Server system: Ubuntu 1...

Summary of several APIs or tips in HTML5 that cannot be missed

In previous blog posts, I have been focusing on so...

Detailed explanation of Vue life cycle functions

Table of contents Lifecycle Functions Common life...

Descending Index in MySQL 8.0

Preface I believe everyone knows that indexes are...

JavaScript to achieve dynamic color change of table

This article shares the specific code for JavaScr...