《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.1.Elastic Stack 安装部署—— 3.4.1.2.Kibana(本地及docker)(4) https://developer.aliyun.com/article/1231416
小结
本节中主要针对 Elasticsearch 集群开启了安全认证时,Kibana 需要进行的相关配置进行了阐述。
常见的参数优化
kibana 的功能已经较为完整,不太需要进行参数上的调整和优化,本节只探讨开启中文显示的方式。
1、同上节中的方式修改对应的配置文件
2、将参数 i18n.locale 设置成 zh-CN
l 在 docker-compose.yml 中对应的参数为 I18N_LOCALE
常见问题及解决方案
本节将针对 Kibana 节点安装部署过程中经常遇到的一些问题进行分析,并提供一些简单的解决方案以供参考。
1、Kibana should not be run as root. Use --allow-root to continue.
l Kibana 和 ES 一样,不能直接通过 root 账号启动
l 像提示中一样,可以通过添加参数 --allow-root 来启动
l 完整命令:./bin/kibana --allow-root
2、FATAL Error: Port 5601 is already in use. Another instance of Kibana may be
running!,
l 5601 端口已被占用
l 修复方式:
○ 通过 netstat -anp | grep 5601 命令寻找绑定5601 端口的进程
[root@esteam7002 ~]# netstat -anp | grep 5601 tcp6 0 0 :::5601 :::* LISTEN 3480/docker-proxy-c
根据进程信息来决定是否需要关闭已有进程
3、无法连接到 ES
log [10:08:28.980] [error][elasticsearch][monitoring] Request error, retrying GET http://localhost:9200/_xpack => connect ECONNREFUSED 127.0.0.1:9200 log [10:08:28.993] [warning][elasticsearch][monitoring] Unable to revive connection: http://localhost:9200/ log [10:08:28.994] [warning][elasticsearch][monitoring] No living connections log [10:08:28.995] [warning][licensing][plugins] License information could not be obtained from Elasticsearch due to Error: No Living connections error log [10:08:29.016] [warning][monitoring][monitoring][plugins] X-Pack Monitoring Cluster Alerts will not be available: No Living connections log [10:08:29.025] [error][data][elasticsearch] [ConnectionError]: connect ECONNREFUSED 127.0.0.1:9200 log [10:08:29.059] [error][savedobjects-service] Unable to retrieve version information from Elasticsearch nodes. log [10:08:31.476] [error][data][elasticsearch] [ConnectionError]: connect ECONNREFUSED 127.0.0.1:9200
l Kibana 无法直接连接 Elasticsearch url,可能有以下原因:
○ 地址配置错误
○ 当前节点和目标地址中间的网络不通
○ Elasticsearch 配置的监听地址/端口有误
l 修复方式:
○ 检查该地址/域名是否正确
○ 通过 curl http://localhost:9200/ 命令测试一下当前节点是否能够正常的连接到目标地址
○ 调整并调试到正确的连接
《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.1.Elastic Stack 安装部署—— 3.4.1.2.Kibana(本地及docker)(6) https://developer.aliyun.com/article/1231414