Kibana安装教程

安装

  1. 官网下载
    https://www.elastic.co/cn/downloads/kibana
  2. 解压
tar -xzf kibana-7.5.1-linux-x86_64.tar.gz
  1. 修改kibana.yml文件
[root@m5315392269-5 kibana]# cd kibana-7.5.1-linux-x86_64/config/
[root@m5315392269-5 config]# vim kibana.yml

#修改具体信息如下
# Kibana is served by a back end server. This setting specifies the port to use.
server.port: 5601

# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "192.168.8.101"

# The URLs of the Elasticsearch instances to use for all your queries.
elasticsearch.hosts: ["http://192.168.8.101:9200"]
  1. 启动kibana
[root@m5315392269-5 bin]# ./kibana

遇到问题

(1)在这里插入图片描述
解决办法
这个问题是链接不到es,需要将es启动起来

发布了13 篇原创文章 · 获赞 11 · 访问量 547

猜你喜欢

转载自blog.csdn.net/sinat_34241861/article/details/103896286
今日推荐