es installationdocker 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 ikBecause 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 installationdocker 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:
|
<<: A quick review of CSS3 pseudo-class selectors
>>: MySQL data loss troubleshooting case
Placing a search box in the top menu bar is a com...
This article example shares the specific code of ...
Table of contents 1. Registering custom instructi...
Table of contents UNION Table initialization Exec...
This article example shares the specific code of ...
This article shares with you how to use Vue to dr...
1 Start the Docker service First you need to know...
Table of contents 1. props 2..sync 3.v-model 4.re...
Background Many website designs generally consist...
Environmental Description Server system: Ubuntu 1...
In previous blog posts, I have been focusing on so...
Table of contents Lifecycle Functions Common life...
Preface I believe everyone knows that indexes are...
1. Background We do some internal training from t...
This article shares the specific code for JavaScr...