热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

elasticssearch+kibanna入门(撰写中)

elasticssearchkibanna入门(撰写中)看到一篇elasticssearchkibanna的文章,觉得很好,
elasticssearch+kibanna入门(撰写中)

 

看到一篇elasticssearch+kibanna的文章,觉得很好,不过例子是python的,所以使用java自己安装一下:

https://mp.weixin.qq.com/s?__biz=MjM5MTYwMjI3Mw==&mid=2652095419&idx=1&sn=68f107ca663283c30bac412129bc7a39&chksm=bd5460b58a23e9a352d37a7baa4d7094b81f414ea87abec3c4ca94cd70860dc47c2c4cbc91ea&mpshare=1&scene=1&srcid=0719qbGkSnqS9tJylcXsphgk#rd 

 

安装包: 

可以到以下两个网站去下载对应的安装包:

https://www.elastic.co/products/elasticsearch  elasticsearch官网

https://www.elastic.co/products/kibana  kibana 官网

 

elasticsearch启动:

     解压elasticsearch-5.5.0.zip,进入bin目录,运行elasticsearch.bat

     访问http://localhost:9200/

 kibana启动:

 解压kibana-5.5.0-windows-x86.zip,进入config目录,修改kibana.yml文件,配置elasticsearch.url地址,就是刚才的elasticsearch的web地址

 

运行bin目录下的kibana.bat文件

访问http://localhost:5601/ 

目前里边还没有任何数据。

 

使用java进行数据操作:

数据参考了这篇文档   http://blog.csdn.net/ming_311/article/details/50619859

 

创建一个maven工程,引入客户端

maven依赖的地址:http://mvnrepository.com/artifact/org.elasticsearch.client/transport

<dependencies><dependency><groupId>org.elasticsearch.clientgroupId><artifactId>transportartifactId><version>5.5.1version>dependency><dependency><groupId>org.apache.logging.log4jgroupId><artifactId>log4j-apiartifactId><version>2.7version>dependency><dependency><groupId>org.apache.logging.log4jgroupId><artifactId>log4j-coreartifactId><version>2.7version>dependency><dependency><groupId>net.sf.json-libgroupId><artifactId>json-libartifactId><version>2.4version><classifier>jdk15classifier>dependency>dependencies>

在src/main/resources创建一个log4j2的配置文件

appender.console.type &#61; Console
appender.console.name &#61; console
appender.console.layout.type &#61; PatternLayout
rootLogger.level &#61; info
rootLogger.appenderRef.console.ref &#61; console

 

创建

 

http://blog.csdn.net/ming_311/article/details/50619859

 

posted on 2017-07-20 14:28 猫不急 阅读(...) 评论(...) 编辑 收藏

转:https://www.cnblogs.com/maobuji/p/7211072.html



推荐阅读
author-avatar
Cyndi_lidi_816
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有