博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ElasticSearch安装小记
阅读量:6158 次
发布时间:2019-06-21

本文共 1058 字,大约阅读时间需要 3 分钟。

hot3.png

安装jdk

因为elasticsearch基于lucene,所以需要jvm支持.安装步骤略.

安装ElasticSearch

# -d表示后台运行./elasticsearch -d# 检查是否运行http://node1:9200

安装plugin

ElasticSearch的plugin命令,可以直接下载github中的插件项目

安装head

#插件官网 https://github.com/mobz/elasticsearch-head#head插件是一个elasticsearch的集群管理工具,它是完全由html5编写的独立网页程序[es@node1 elasticsearch-2.4.0]$ ./bin/plugin install mobz/elasticsearch-head#打开head界面http://node1:9200/_plugin/head/

安装kopf

官网:https://github.com/lmenezes/elasticsearch-kopf./elasticsearch/bin/plugin install lmenezes/elasticsearch-kopf/{branch|version}open http://localhost:9200/_plugin/kopf

安装集群

# 配置集群名称(所有节点相同)cluster.name: mark-es# 配置节点名称(每个节点配置不同)node.name: node1# 配置IP可以访问(每个节点的IP)network.host: 172.16.219.153# 由于配置当前服务器IP,必须指定es集群节点(所有节点相同)discovery.zen.ping.unicast.hosts: ["172.16.219.151","172.16.219.152", "172.16.219.153"]

troubleshooting

elasticsearch要求jdk版本必须要高于1.7.55,否则会报If you absolutely cannot upgrade, please add -XX:-UseSuperWord to the JVM_OPTS environment variable.

elasticsearch2.2版本以后,必须使用非root用户启动,所以必须先创建一个执行用户

 

转载于:https://my.oschina.net/cnarthurs/blog/748115

你可能感兴趣的文章
CodeCombat森林关卡Python代码
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>