First, pull the image (or just create a container and it will be pulled naturally) Create a container docker run --name elasticsearch --net host -e "discovery.type=single-node" -e "network.host=IP address" elasticsearch:6.5.4 start up View logs You can see that my server has only 2G memory, so it cannot start due to insufficient memory. Change the startup memory size. Restart ES docker run --name elasticsearch -d -e ES_JAVA_OPTS="-Xms512m -Xmx512m" --net host -e "discovery.type=single-node" -e "network.host=IP address" -p 9200:9200 -p 9300:9300 elasticsearch test IP:9200 Summarize The above is a detailed tutorial on how to install ElasticSearch 6.x with Docker. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time! You may also be interested in:
|
<<: MySql common query command operation list
>>: Usage of Node.js http module
The a tag is mainly used to implement page jump, ...
1. Create the /usr/local/services/zookeeper folde...
Today, when developing, I encountered a method wh...
1. Linux under VMware Workstation: 1. Update sour...
Moreover, an article website built with a blog pro...
This is a cheating scheme for voting websites wit...
<br />Recently, UCDChina wrote a series of a...
After the form is submitted, the returned HTML pag...
Prepare: MySQL 8.0 Windows zip package download a...
1. Background Netplan is a new command-line netwo...
1. Prepare in Advance For your convenience, I cre...
Tomcat's default log uses java.util.logging, ...
Tab switching is also a common technology in proj...
1. Introduction It has been supported since versi...
xml <?xml version="1.0" encoding=&qu...