入门ElasticSearch
一、 什么是Elasticsearch?
Elasticsearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java语言开发的,并作为Apache许可条款下的开放源码发布,是一种流行的企业级搜索引擎。Elasticsearch用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。官方客户端在Java、.NET(C#)、PHP、Python、Apache Groovy、Ruby和许多其他语言中都是可用的。根据DB-Engines的排名显示,Elasticsearch是最受欢迎的企业搜索引擎,其次是Apache Solr,也是基于Lucene。
二、Docker下安装 Elasticsearch
1. 命令 docker pull docker.elastic.co/elasticsearch/elasticsearch:版本号
2. 启动 docker run -d --name es -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:版本号
正常安装的es 不加 :“discovery.type=single-node” 是只可以本地访问的 外界访问不了
三、Docker下安装 ElasticSearch-Head
1. 安装 ElasticSearch-Head 可以有一个可视化界面管理Elasticsearch
2. 命令 docker pull mobz/elasticsearch-head:5
3. 启动 docker run -d --name es_admin -p 9100:9100 mobz/elasticsearch-head:5
4. 访问 http://localhost:9100/
注意
建议把jvm内存设置小点 es默认需要2g
操作: find / -name jvm.options
## JVM configuration
################################################################
## IMPORTANT: JVM heap size
################################################################
##
## You should always set the min and max JVM heap
## size to the same value. For example, to set
## the heap to 4 GB, set:
##
## -Xms4g
## -Xmx4g
##
## See https://www.elastic.co/guide/en/elasticsearch/reference/current/heap-size.html
## for more information
##
################################################################
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space
-Xms1g #改成128m
-Xmx1g #改成128m
################################################################