001,kibana的安装

kibana安装linux

2.1 下载json

下载地址:https://www.elastic.co/downloads/kibana浏览器

2.2 解压elasticsearch

解压:tar zxvf kibana-4.5.1-linux-x64.tar.gzurl

2.3 配置code

到config/kibana.yml目录下,般修改标注的这三个参数便可。server

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 启动ci

到bin目录下,启动便可。get

./kibana  //不能关闭终端

nohup  ./kibana > /nohub.out &  //可关闭终端,在nohup.out中查看log

2.5 访问it

在浏览器中访问:http://xxxx:5601/

相关文章
相关标签/搜索