| 
       
	kibana安装非常简单,rpm安装就好了 
	$ wget  https://artifacts.elastic.co/downloads/kibana/kibana-7.5.0-x86_64.rpm 
	$ yum localinstall -y kibana-7.5.0-x86_64.rpm 
	kibana 配置文件 
	$ egrep -v '^#|^$' /etc/kibana/kibana.yml 
	server.port: 5601 
	server.host: "0.0.0.0" 
	server.name: "10.100.12.144" 
	elasticsearch.hosts: ["http://10.100.12.144:9200","http://10.100.12.145:9200","http://10.100.12.146:9200"] 
	elasticsearch.username: "kibana" 
	elasticsearch.password: "xxx" 
	elasticsearch.ssl.verificationMode: none 
	elasticsearch.requestTimeout: 90000 
	i18n.locale: "zh-CN" 
![]()  | 
    

