美文网首页
kibana的安装和启动

kibana的安装和启动

作者: 晴空万里103804 | 来源:发表于2020-10-30 09:16 被阅读0次

    参考地址:

    https://blog.csdn.net/cb2474600377/article/details/78963247

    解压后,配置config/kibana.yml

    server.port: 5601

    server.name: "XXX.XXX.XX.XX"

    elasticsearch.hosts: ["http://localhost:9200"]

    启动

    ./bin/kibana &  

    注意启动用户使用elasticsearch的启动用户保持一致,不允许使用root用户启动。启动提示如下错误

    FATAL Error: Unable to write Kibana UUID file, please check the uuid.server configuration value in kibana.yml and ensure Kibana has sufficient permissions to read / write to this file. Error was: EACCES

    解决:

    # 在root下为 为kibana赋权

    chown -R elsearch:elsearch /home/es/kibana-7.6.1-linux-x86_64/

    # 修改kibana所在文件夹的权限

    chmod 770 kibana-7.6.1-linux-x86_64

    # 切换回用户组 elsearch

    su elsearch

    # 启动

    ./bin/kibana &

    启动后再次出现错误

    log [07:33:17.538] [warning][plugins][reporting][validations] Reporting plugin self-check generated a warning: Error: Could not close browser client handle!

    以上错误可不需要处理!

    Kibana启动后外网访问不了

    问题

    Kibana启动后,使用外网访问 http://ip地址:5601 访问不了

    在控制台 curl http://localhost:5601 也是什么都不显示

    解决:

    修改 config/kibaba.yml 下的 server.host  为 0.0.0.0, 默认是注释掉的或者是localhost

    server.host: "0.0.0.0"

    重新启动Kibana,再次访问http://xxx.xxx.xx.xx:5601/app/home#/

    相关文章

      网友评论

          本文标题:kibana的安装和启动

          本文链接:https://www.haomeiwen.com/subject/ocnkvktx.html