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

elasticsearch 5.4 安装

时间:2017-06-16 19:23:32      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:minimum   bin   net   oca   ejs   unzip   索引   name   str   

elasticsearch 5.4 安装

1. 下载并解压
https://www.elastic.co/downloads/elasticsearch
tar -xvf elasticsearch-5.4.1.tar.gz

2. 配置config/elasticsearch.yml
cluster.name: yinjq-application
node.name: node-1
#索引存储位置
path.data: ~/es/data
#日志存储位置
path.logs: ~/es/logs
network.host: localhost
http.port: 9200
discovery.zen.ping.unicast.hosts: ["localhost"]
discovery.zen.minimum_master_nodes: 1
gateway.recover_after_nodes: 1
#head可以跨域访问
http.cors.enabled: true
http.cors.allow-origin: "*"

3. 启动
./bin/elasticsearch


elasticsearch-head 安装

5.x之后, head是一个单独server运行, 依赖于nodejs,npm,因此需要先装好nodejs,npm

1. 下载并解压
https://github.com/mobz/elasticsearch-head
unzip elasticsearch-head-master.zip

2. 安装
这个在git的网站上写的很详细
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
npm run start
open http://localhost:9100/
输入ES的集群 环境 http://localhost:9200/ ,点击链接即可.

 

elasticsearch 5.4 安装

标签:minimum   bin   net   oca   ejs   unzip   索引   name   str   

原文地址:http://www.cnblogs.com/machong/p/7028853.html

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