ElasticSearch可视化工具

守給你的承諾、 提交于 2019-11-28 08:21:01

1 ElasticHD

1.0 下载

传送门:https://github.com/360EntSecGroup-Skylar/ElasticHD/releases
根据机器环境选择对应的版本.
如Linux,选择:elasticHD_linux_amd64.zip

1.2 解压

unzip elasticHD_linux_amd64.zip -d /path/to/ES

1.3 添加文件读写权限

sudo chmod 777 ElasticHD

1.4 运行

# 进入ES文件夹
cd path/to/ES
# 执行文件
exec ./ElasticHD -p 127.0.0.1:9800
# 或者这样执行
./ElasticHD -p 127.0.0.1:9800
To view elasticHD console open http://127.0.0.1:9800 in browser

在这里插入图片描述

图 ElasticHD首页信息

2 Kibana

2.1 下载

传送门:https://www.elastic.co/cn/downloads/past-releases#kibana
选择需要的版本.

2.2 安装

tar -zxvf kibana-6.3.0-linux-x86_64.tar.gz -C /usr/kibana

2.3 配置

cd /usr/kibana/kibana-6.3.0-linux-x86_64/config
vim kibana.yml
# kibana监听端口
server.port: 5601
# 允许外网访问
server.host: "0.0.0.0"
# es 集群地址
elasticsearch.url: "http://127.0.0.1:9200"

2.4 启动

  • 前台启动
cd /usr/kibana/kibana-6.3.0-linux-x86_64
./bin/kibana
  • 后台启动
nohup ./bin/kibana

在这里插入图片描述

图 Kibana启动

[参考文献]
[1]https://github.com/360EntSecGroup-Skylar/ElasticHD/releases
[2]https://blog.csdn.net/wangshuaiwsws95/article/details/83535489
[3]https://www.cnblogs.com/Rawls/p/10080082.html
[4]https://www.jianshu.com/p/f3ae53e1f907
[5]https://linuxeye.com/467.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!