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
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"
注:
集群地址要配置正确,否则Kibana连不上elasticsearch,报错如下:
[status][plugin:xpack_main@6.3.0] Status changed from yellow to red - Request Timeout after 3000ms
2.4 启动
- 前台启动
cd /usr/kibana/kibana-6.3.0-linux-x86_64
./bin/kibana
- 后台启动
nohup ./bin/kibana
- 登录
localhost:5601
[参考文献]
[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
[6]https://blog.csdn.net/roshy/article/details/100151995