Kibana 6.8.8
下载地址:
https://www.elastic.co/cn/downloads/past-releases/kibana-6-8-8
安装说明:
https://www.elastic.co/guide/en/kibana/6.8/targz.html
[root@host101 config]# tar xvf kibana-6.8.8-linux-x86_64.tar.gz -C /usr/local/ [root@host101 config]# cd /usr/local/ [root@host101 local]# mv kibana-6.8.8-linux-x86_64/ kibana [root@host101 local]# cd kibana/
[root@host101 kibana]# bin/kibana
直接这样启动会报错,Kibana默认连接localhost:9200地址,会报连接地址失败,
需要修改下kibana的配置文件
[root@host101 ~]# cd /usr/local/kibana/config/ [root@host101 config]# vi kibana.yml 修改 server.host: "192.168.150.101" elasticsearch.hosts: ["http://192.168.150.101:9200"] 保存! #重启Kibana,运行正常。 [root@host101 kibana]# bin/kibana log [00:49:52.151] [warning][reporting] Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml log [00:49:52.195] [info][status][plugin:reporting@6.8.8] Status changed from uninitialized to green - Ready log [00:49:52.497] [info][task_manager] Installing .kibana_task_manager index template version: 6080899. log [00:49:52.644] [info][task_manager] Installed .kibana_task_manager index template: version 6080899 (API version 1) log [00:49:56.729] [info][migrations] Creating index .kibana_1. log [00:49:57.356] [info][migrations] Pointing alias .kibana to .kibana_1. log [00:49:57.543] [info][migrations] Finished in 813ms. log [00:49:57.547] [info][listening] Server running at http://192.168.150.101:5601 log [00:49:57.927] [info][status][plugin:spaces@6.8.8] Status changed from yellow to green - Ready
在浏览器中输入 http://192.168.150.101:5601 可以看到Kibana的主页,但都是英文的,需要汉化下,
Kibana从6.7版本之后开始支持中文。
[root@host101 config]# vi kibana.yml
修改
i18n.locale: "zh-CN"
保存!
重启Kibana
刷新web界面,网页内容都是汉字了。