其他分享
首页 > 其他分享> > Kibana安装配置

Kibana安装配置

作者:互联网

1.Kibana解压、启动

kibana-6.6.2-linux-x86_64.tar.gz

2.默认端口配置

[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.访问地址配置

[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地址

# 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"]


标签:配置,Kibana,server,5601,kibana,安装,port,localhost
来源: https://blog.51cto.com/11726705/2417871