Elasticsearch是一个基于Apache Lucene™的开源搜索引擎。无论在开源还是专有领域,Lucene可以被认为是迄今为止最先进、性能最好的、功能最全的搜索引擎库。
1.安装ElasticSearch
前提条件电脑上必须安装jdk1.8
下载
下载地址:https://www.elastic.co/cn/downloads/elasticsearch
选择版本:根据自己的系统
安装
将下载好的安装包解压到安装目录
编辑config目录下的elasticsearch.yml文件
添加以下代码
http.cors.enabled: true
http.cors.allow-origin: "*"
启动
点击bin目录下的elasticsearch.bat
启动elasticsearch
在服务器地址http:localhost:9200查看启动结果
启动成功
2.安装ElasticSearch-head插件
下载
下载地址:https://github.com/mobz/elasticsearch-head
安装
将下载的压缩包解压到安装目录
打开cmd在解压目录下运行npm install安装命令
再运行npm run start
在网页上打开http:localhost:9100就可以看见ElasticSearch集群的信息了