设置 kibana 的语言为中文
官网文档:https://www.elastic.co/guide/en/kibana/current/i18n-settings-kb.html
在 kibana.yml 尾部添加一行配置即可 (7.0 版本后)。
//冒号后必须加空格
i18n.locale: "zh-CN"
docker-compose.yml
kibana:
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
- I18N_LOCALE=zh-CN
上一篇
解决 Python 'module' object has no attribute 'SSL_ST_INIT' 错误
本文介绍了如何解决 Python 中出现的 'module' object has no attribute 'SSL_ST_INIT' 错误,包括使用 pip install pyopenssl 和 sudo python -m easy_install --upgrade pyOpenSSL 两种方法。
下一篇
Linux curl 忽略证书错误
Linux curl 命令出现 \"curl: (60) SSL certificate problem: Invalid certificate chain\" 错误的解决方法,通过添加 `-k` 参数忽略证书错误。