Kibana安裝配置

1.Kibana解壓、啓動linux

kibana-6.6.2-linux-x86_64.tar.gz

2.默認端口配置
bash

[root@localhost config]# vi kibana.yml 
# Kibana is served by a back end server. This setting specifies the port to use.
#server.port: 5601
server.port: 5601

3.訪問地址配置
elasticsearch

[root@localhost config]# vi kibana.yml 
# Kibana is served by a back end server. This setting specifies the port to use.
#server.port: 5601
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: "localhost"
server.host: "0.0.0.0"

4.配置ES地址ide

# The URLs of the Elasticsearch instances to use for all your queries.
#elasticsearch.hosts: ["http://localhost:9200"]
elasticsearch.hosts: ["http://10.10.10.46:9200"]
相關文章
相關標籤/搜索