搜索引擎用过没?没用过就来看看这篇文章

入门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

################################################################


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值