码迷,mamicode.com
首页 > 其他好文 > 详细

Centos6.5搭建Elasticsearch

时间:2019-01-03 10:49:54      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:jdk   inux   引擎   设置   https   版本   指定   term   nload   

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
版权声明:本文为博主原创文章,转载请附上博文链接!

Centos6.5搭建Elasticsearch

标签:jdk   inux   引擎   设置   https   版本   指定   term   nload   

原文地址:http://blog.51cto.com/13971805/2338104

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!