Kibana5.4安装包下载地址:
https://artifacts.elastic.co/downloads/kibana/kibana-5.4.0-linux-x86_64.tar.gz
解压后修改配置文件kibana.yml
server.port: 5015 (默认5601端口)
server.host: "0.0.0.0"
elasticsearch.url: "http://X.X.X.X:9200"
后台启动:nohup bin/kibana &
exit
----安装时注意如有下面错误
Caused by: mapping values are not allowed here
in 'reader', line 51, column 30:
bootstrap.memory_lock: true
bootstrap.system_call_filter: false
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: "Authorization"
bootstrap.system_call_filter: false
---解决
说明bootstrap.system_call_filter: false 这一行与上一行没对齐,ES里面严格要求格式,把每一行的文字前面顶格写,去掉最前面的空格
-
顶
本文介绍Kibana5.4的安装过程,包括下载安装包、配置kibana.yml文件以及后台启动的方法,并解决了配置过程中可能出现的错误。
422

被折叠的 条评论
为什么被折叠?



