标签:lan ref 数据 src 处理 index cdn sts mnt
Elastic Stack就一套日志分析系统,前身叫ELK。
下载解压
kibana-7.7.0-linux-x86_64.tar.gz
tar -zxvf kibana-7.7.0-linux-x86_64.tar.gz -C /mnt/hgfs/shareLinux/
修改配置
#设置
vim kibana-7.7.0-linux-x86_64/config/kibana.yml
#放开注释
server.port: 5601
server.host: "0.0.0.0"
elasticsearch.hosts: ["http://localhost:9200"]
kibana.index: ".kibana"
如果有elasticsearch.url: "http://127.0.0.1:9200" ,就放这个
没有就放elasticsearch.hosts: ["http://localhost:9200"]
启动
#后台启动
nohup kibana-7.7.0-linux-x86_64/bin/kibana &
nohup:no hang up,不挂断。
标签:lan ref 数据 src 处理 index cdn sts mnt
原文地址:https://www.cnblogs.com/tigerlion/p/12961710.html