kibana安装
2.1 下载
下载地址:
2.2 解压
解压:tar zxvf kibana-4.5.1-linux-x64.tar.gz
2.3 配置
到config/kibana.yml目录下,般修改标注的这三个参数即可。
server.port: 5601# The host to bind the server to.server.host: "0.0.0.0"# If you are running kibana behind a proxy, and want to mount it at a path,# specify that path here. The basePath can't end in a slash.# server.basePath: ""# The Elasticsearch instance to use for all your queries.elasticsearch.url: "http://" #这里是elasticsearch的访问地址
2.4 启动
到bin目录下,启动即可。
./kibana //不能关闭终端nohup ./kibana > /nohub.out & //可关闭终端,在nohup.out中查看log
2.5 访问
在浏览器中访问: