Centos6.5搭建Elasticsearch

时间:2021-12-14 07:36:37

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

Centos6.5搭建Elasticsearch

3.安装JDK(版本为1.8),并设置JAVA_HOME环境变量(这里就不细说了,可以参考网上的教程操作一下就可以了)

4.使用linux命令:

cd bin

./elasticsearch

Centos6.5搭建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版本)

Centos6.5搭建Elasticsearch

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 &

Centos6.5搭建Elasticsearch

3.访问http://localhost:9200/

Centos6.5搭建ElasticsearchCentos6.5搭建Elasticsearch