ElasticSearch是基于Lucene的搜索服务。支持分布式多用户能力的全文搜索引擎,提供RESTful web接口。Elasticsearch是用Java开发的,Apache旗下开源项目,支持海量数据存储及查询,是当前互联网比较流行的搜索引擎。
安装
1.在官方网站:https://www.elastic.co/downloads/elasticsearch下载elasticsearch-6.2.4.tar.gz
2.将安装包加压到指定目录
tar -zxvf elasticsearch-6.2.4.tar.gz
3.安装JDK(版本为1.8),并设置JAVA_HOME环境变量(这里就不细说了,可以参考网上的教程操作一下就可以了)
4.使用linux命令:
cd bin
./elasticsearch
安装插件
1.安装git插件
yum install git
2.安装node,npm
wget http://cdn.npm.taobao.org/dist/node/latest-v4.x/node-v4.4.3-linux-x86.tar.gz
tar zxvf node-v4.4.3-linux-x86.tar.gz
vim /etc/profile
export NODE_HOME=/usr/local/node/node-v4.4.3-linux-x86
export PATH=$NODE_HOME/bin:$PATH
source /etc/profile
node -v (安装正确的话,显示node版本)
npm -v (安装正确的话,显示npm版本)
2.安装head 插件
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
vim /home/elasticsearch/elasticsearch-head/Gruntfile.js
cd /home/elasticsearch/elasticsearch-head/node_modules/grunt/bin
./grunt server
./grunt server &
3.访问http://localhost:9200/
作者:柯之梦
来源:CSDN
原文:https://blog.csdn.net/yin4302008/article/details/85648154
版权声明:本文为博主原创文章,转载请附上博文链接!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。